:root {
  --ink: #07111c;
  --ink-2: #0c1724;
  --panel: rgba(10, 18, 28, 0.78);
  --panel-strong: rgba(10, 18, 28, 0.94);
  --line: rgba(216, 176, 85, 0.28);
  --gold: #d7ad4c;
  --gold-2: #f3d486;
  --white: #f8fbff;
  --muted: #aeb8c6;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 12%, rgba(215, 173, 76, 0.16), transparent 28rem),
    radial-gradient(circle at 85% 20%, rgba(48, 88, 130, 0.3), transparent 30rem),
    linear-gradient(135deg, #05090e 0%, #0c1724 42%, #030609 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 4% 34%, rgba(215, 173, 76, 0.16), transparent 12rem),
    radial-gradient(circle at 94% 54%, rgba(215, 173, 76, 0.12), transparent 14rem),
    linear-gradient(90deg, rgba(215, 173, 76, 0.035), transparent 18%, transparent 82%, rgba(215, 173, 76, 0.04));
  z-index: -2;
}

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

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

.starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  opacity: 0.7;
}

.cursor-glow {
  position: fixed;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(215, 173, 76, 0.18), transparent 65%);
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: opacity 0.25s ease;
}

.meteor-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.meteor-layer span {
  position: absolute;
  top: -12%;
  left: 18%;
  width: 190px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(243, 212, 134, 0.98), transparent);
  filter: drop-shadow(0 0 10px rgba(243, 212, 134, 0.8));
  opacity: 0;
  transform: rotate(-28deg);
  animation: meteor 7.5s linear infinite;
}

.meteor-layer span:nth-child(2) {
  left: 62%;
  animation-delay: 2.4s;
  animation-duration: 9s;
}

.meteor-layer span:nth-child(3) {
  left: 84%;
  animation-delay: 4.8s;
  animation-duration: 8s;
}

.meteor-layer span:nth-child(4) {
  left: 38%;
  animation-delay: 6.3s;
  animation-duration: 10s;
}

.section-pad {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-pad.compact {
  padding: 54px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 24px));
  margin: 12px auto 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(4, 8, 13, 0.68);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(4, 8, 13, 0.92);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
}

.brand strong {
  color: var(--gold-2);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  position: relative;
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  min-height: calc(100vh - 92px);
  padding-top: 42px;
  padding-bottom: 42px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.4vw, 6.3rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-text,
.page-hero p,
.showcase-copy p,
.feature-card p,
.value-card p,
.service-card p,
.timeline p,
.cta p,
details p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn.primary {
  color: #120d02;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 18px 50px rgba(215, 173, 76, 0.28);
}

.btn.ghost {
  color: var(--white);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.btn.small {
  min-height: 44px;
  width: 100%;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(243, 212, 134, 0.72);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 38px;
}

.hero-stats span {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
}

.hero-stats strong {
  display: block;
  color: var(--gold-2);
  font-size: 1.3rem;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  align-self: stretch;
}

.orbital {
  position: absolute;
  inset: 0 5% auto auto;
  width: min(460px, 72vw);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  animation: spinSlow 22s linear infinite;
}

.solar-system {
  position: absolute;
  inset: 2% 1% 16% 8%;
  border: 1px solid rgba(215, 173, 76, 0.13);
  border-radius: 50%;
  animation: spinSlow 34s linear infinite;
}

.solar-system::before,
.solar-system::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
}

.solar-system::after {
  inset: 31%;
}

.planet {
  position: absolute;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 22px rgba(243, 212, 134, 0.7);
}

.planet-one {
  width: 14px;
  height: 14px;
  top: 7%;
  left: 52%;
}

.planet-two {
  width: 9px;
  height: 9px;
  right: 3%;
  top: 48%;
}

.planet-three {
  width: 18px;
  height: 18px;
  left: 14%;
  bottom: 18%;
  background: #7fa4c7;
}

.orbital::before,
.orbital::after {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.orbital::after {
  inset: 31%;
  border-color: rgba(215, 173, 76, 0.18);
}

.compass-card {
  position: absolute;
  inset: 18%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  animation: spinReverse 22s linear infinite;
}

.compass-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.orbit-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 26px var(--gold);
}

.dot-a { top: 8%; left: 50%; }
.dot-b { right: 10%; bottom: 28%; }
.dot-c { left: 12%; bottom: 22%; }

.device-stack {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
}

.browser-window,
.tablet-window,
.phone-window {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(16, 26, 39, 0.96), rgba(5, 9, 14, 0.96));
  box-shadow: var(--shadow);
}

.browser-window {
  width: 78%;
  min-height: 340px;
  padding: 16px;
  transform: perspective(900px) rotateY(-10deg) rotateX(5deg);
  animation: floatDevice 5.4s ease-in-out infinite;
}

.browser-top {
  display: flex;
  gap: 7px;
  margin-bottom: 36px;
}

.browser-top i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.browser-content {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(215, 173, 76, 0.16), transparent),
    rgba(255, 255, 255, 0.04);
}

.browser-content p {
  max-width: 340px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
}

.mock-line {
  width: 62%;
  height: 10px;
  margin: 14px 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.mock-line.wide {
  width: 84%;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.mock-grid span {
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.phone-window {
  position: absolute;
  right: 1%;
  bottom: 4px;
  width: 160px;
  min-height: 260px;
  padding: 18px 14px;
  transform: rotate(4deg);
  animation: floatDevice 4.7s ease-in-out infinite reverse;
}

.tablet-window {
  position: absolute;
  right: 16%;
  bottom: -16px;
  width: 280px;
  height: 190px;
  padding: 14px;
  transform: rotate(-3deg);
  animation: floatDevice 6.2s ease-in-out infinite;
}

.tablet-screen {
  height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(215, 173, 76, 0.14), rgba(255, 255, 255, 0.035));
}

.tablet-screen span {
  display: block;
  width: 58%;
  height: 10px;
  margin-bottom: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.tablet-screen strong {
  color: var(--gold-2);
}

.phone-window span {
  display: block;
  width: 48px;
  height: 5px;
  margin: 0 auto 60px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.phone-window p {
  font-weight: 900;
  color: var(--gold-2);
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.marquee-track {
  display: flex;
  min-width: max-content;
  gap: 0;
  padding: 18px 0;
  animation: marquee 28s linear infinite;
}

.marquee span {
  flex: 0 0 auto;
  min-width: max(260px, 16.66vw);
  color: var(--gold-2);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.feature-grid,
.values,
.service-board,
.pricing-grid,
.contact-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.value-card,
.service-card,
.process-card,
.price-card,
.meeting-card,
.contact-form,
.quote-builder,
details,
.process-strip,
.showcase-panel {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.feature-card,
.value-card,
.service-card,
.process-card,
.price-card,
.meeting-card,
.contact-form,
details,
.process-strip {
  padding: 24px;
}

.icon,
.service-card span,
.process-card span,
.timeline span,
.package-tag {
  color: var(--gold-2);
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.showcase,
.device-lab {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 36px;
  align-items: center;
}

.showcase-panel {
  overflow: hidden;
  padding: 10px;
  transform: rotate(-1.5deg);
}

.showcase-panel img {
  border-radius: var(--radius);
}

.text-link {
  color: var(--gold-2);
  font-weight: 900;
  border-bottom: 1px solid var(--gold);
}

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

.process-showcase {
  position: relative;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.process-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 118px;
  height: 118px;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: inset 0 0 24px rgba(215, 173, 76, 0.12);
}

.device-scene {
  position: relative;
  min-height: 520px;
}

.desktop-device,
.laptop-device,
.mobile-device {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(16, 26, 39, 0.98), rgba(5, 9, 14, 0.98));
  box-shadow: var(--shadow);
}

.desktop-device {
  top: 22px;
  left: 0;
  right: 8%;
  height: 360px;
  padding: 18px;
  transform: perspective(1000px) rotateY(-8deg);
  animation: floatDevice 6s ease-in-out infinite;
}

.desktop-device::after {
  content: "";
  position: absolute;
  left: 42%;
  bottom: -56px;
  width: 120px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 0;
  background: rgba(255, 255, 255, 0.04);
}

.laptop-device {
  left: 9%;
  bottom: 20px;
  width: 58%;
  height: 230px;
  padding: 14px;
  transform: rotate(-2deg);
  animation: floatDevice 5.2s ease-in-out infinite reverse;
}

.mobile-device {
  right: 0;
  bottom: 44px;
  width: 150px;
  height: 292px;
  padding: 14px;
  transform: rotate(4deg);
  animation: floatDevice 4.6s ease-in-out infinite;
}

.screen-nav,
.screen-hero,
.screen-cards span,
.mobile-device > span {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
}

.screen-nav {
  width: 100%;
  height: 36px;
  margin-bottom: 18px;
}

.screen-hero {
  height: 120px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(215, 173, 76, 0.28), rgba(255, 255, 255, 0.07));
}

.screen-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.screen-cards span {
  height: 84px;
}

.laptop-device .screen-hero {
  height: 92px;
}

.laptop-device .screen-cards {
  grid-template-columns: repeat(2, 1fr);
}

.mobile-device .screen-nav {
  height: 22px;
}

.mobile-device .screen-hero {
  height: 94px;
}

.mobile-device > span {
  display: block;
  height: 28px;
  margin-top: 10px;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.packages-page {
  grid-template-columns: repeat(4, 1fr);
}

.price-card {
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(215, 173, 76, 0.22), transparent 45%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.price-card > * {
  position: relative;
  z-index: 1;
}

.price-card:hover::before,
.price-card.is-selected::before {
  opacity: 1;
}

.price-card.featured {
  border-color: rgba(243, 212, 134, 0.55);
  transform: translateY(-14px);
}

.price-card h3 {
  margin: 12px 0 0;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  letter-spacing: -0.05em;
}

.price-card > span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold-2);
  font-weight: 900;
  text-transform: uppercase;
}

.price-card ul {
  position: relative;
  z-index: 1;
  min-height: 168px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.price-card li {
  margin: 12px 0;
  color: var(--muted);
}

.price-card li::before {
  content: "+";
  margin-right: 10px;
  color: var(--gold-2);
  font-weight: 900;
}

.cta {
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 20%, rgba(215, 173, 76, 0.22), transparent 26rem),
    var(--panel);
}

.page-hero {
  min-height: 34vh;
  display: grid;
  align-items: end;
  padding-top: 58px;
  padding-bottom: 42px;
}

.page-hero > div {
  max-width: 920px;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline article {
  padding: 18px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.035);
}

.values {
  grid-template-columns: repeat(3, 1fr);
}

.service-board {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 240px;
}

.process-strip div {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.process-strip span {
  padding: 14px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--gold-2);
  text-align: center;
  font-weight: 900;
}

.quote-builder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
}

.faq {
  padding-top: 20px;
}

details {
  margin-bottom: 12px;
}

summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 900;
}

.contact-grid {
  grid-template-columns: 1fr 0.72fr;
  align-items: start;
}

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

.calendar-preview {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.calendar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.calendar-top strong {
  color: var(--white);
  font-size: 1.1rem;
  text-align: center;
}

.calendar-nav {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
}

.calendar-nav:hover {
  border-color: var(--gold);
}

.selected-date {
  margin: 12px 0;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-weekdays {
  margin-bottom: 8px;
}

.calendar-weekdays span {
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.calendar-grid {
  margin-bottom: 16px;
}

.calendar-grid button {
  min-height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
}

.calendar-grid button:hover:not(:disabled) {
  border-color: var(--gold);
}

.calendar-grid button:disabled {
  cursor: not-allowed;
  color: rgba(174, 184, 198, 0.38);
  background: rgba(255, 255, 255, 0.025);
}

.calendar-grid button.weekend:not(:disabled) {
  color: var(--muted);
}

.calendar-blank {
  min-height: 38px;
}

.slot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.slot-row button {
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
}

.calendar-grid button.is-selected,
.slot-row button:hover,
.slot-row button.is-selected {
  color: #120d02;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.slot-row button {
  flex: 1 1 78px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--gold-2);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--white);
  background: rgba(1, 5, 10, 0.7);
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(215, 173, 76, 0.13);
}

.form-note,
.contact-methods a,
.contact-methods span {
  color: var(--muted);
}

.form-note {
  min-height: 24px;
}

.form-note[data-state="success"] {
  color: #8ff0b4;
}

.form-note[data-state="warning"] {
  color: var(--gold-2);
}

.form-note[data-state="error"] {
  color: #ff9a9a;
}

.btn:disabled {
  cursor: wait;
  opacity: 0.7;
}

.contact-methods {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr;
  gap: 28px;
  width: min(1240px, calc(100% - 32px));
  margin: 40px auto 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background:
    radial-gradient(circle at 12% 8%, rgba(215, 173, 76, 0.16), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.site-footer strong {
  color: var(--white);
  font-size: 1.25rem;
}

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

.footer-brand img {
  width: 78px;
  height: 78px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  object-fit: contain;
  background: var(--white);
}

.footer-brand p {
  margin: 8px 0 0;
  max-width: 360px;
  line-height: 1.6;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 8px;
  align-content: start;
}

.site-footer h3 {
  margin: 0 0 6px;
  color: var(--gold-2);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--gold-2);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(216, 176, 85, 0.22);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }

@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

@keyframes spinReverse {
  to { transform: rotate(-360deg); }
}

@keyframes spinCentered {
  from { transform: translateX(-50%) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes meteor {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-28deg);
  }
  8% {
    opacity: 1;
  }
  22% {
    opacity: 0;
    transform: translate3d(-520px, 360px, 0) rotate(-28deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(-520px, 360px, 0) rotate(-28deg);
  }
}

@keyframes floatDevice {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

@media (max-width: 1040px) {
  .hero,
  .split,
  .showcase,
  .device-lab,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .feature-grid,
  .pricing-grid,
  .packages-page,
  .values,
  .service-board {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-strip div {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .section-pad {
    width: min(100% - 24px, 1160px);
    padding: 48px 0;
  }

  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding-top: 10px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    border-radius: var(--radius);
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.3rem);
  }

  .hero-stats,
  .feature-grid,
  .pricing-grid,
  .packages-page,
  .values,
    .service-board,
    .process-grid,
    .process-strip div {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 430px;
  }

  .orbital {
    inset: 0 auto auto 50%;
    width: min(340px, 88vw);
    animation: spinCentered 22s linear infinite;
  }

  .solar-system {
    inset: 0 0 18% 0;
  }

  .browser-window {
    width: 86%;
    min-height: 284px;
  }

  .tablet-window {
    width: 210px;
    height: 145px;
    right: 16%;
  }

  .phone-window {
    width: 124px;
    min-height: 214px;
  }

  .device-scene {
    min-height: 430px;
  }

  .desktop-device {
    right: 0;
    height: 280px;
  }

  .laptop-device {
    width: 70%;
  }

  .mobile-device {
    width: 118px;
    height: 238px;
  }

  .price-card.featured {
    transform: none;
  }

  .quote-builder,
  .site-footer {
    display: grid;
    text-align: left;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand img {
    width: 64px;
    height: 64px;
  }

  .footer-bottom {
    display: grid;
  }

  .cta {
    padding: 32px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
