:root {
  --background: #0b0c08;
  --surface: #151713;
  --surface-soft: #1c1f1a;
  --surface-muted: #252923;
  --border: #33382f;
  --border-soft: rgba(228, 228, 206, 0.12);
  --text: #f4f4eb;
  --muted: #b7baa5;
  --faint: #626757;
  --accent: #eaff00;
  --teal: #33ddcb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  --cursor-x: 50vw;
  --cursor-y: 50vh;
  margin: 0;
  background:
    linear-gradient(rgba(228, 228, 206, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(228, 228, 206, 0.025) 1px, transparent 1px),
    var(--background);
  background-size: 48px 48px;
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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


.site-nav {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(11, 12, 8, 0.9);
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  height: 80px;
  justify-content: space-between;
  left: 0;
  padding: 0 40px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

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

.brand-icon,
.mini-brand img {
  height: 52px;
  width: 52px;
}

.brand-text,
.mini-brand span {
  display: grid;
  line-height: 1;
}

.brand-text strong,
.mini-brand strong {
  color: var(--text);
  font-size: 18px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand-text em,
.mini-brand em {
  color: var(--teal);
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a,
.nav-cta,
.button,
.eyebrow,
.popular {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--muted);
}

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

.nav-cta,
.button-primary {
  background: var(--accent);
  color: #111206;
}

.nav-cta {
  padding: 14px 18px;
}

.section {
  padding: 128px 40px;
}

.hero {
  --hero-mouse-x: 72%;
  --hero-mouse-y: 38%;
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  min-height: 100vh;
  overflow: hidden;
  padding-top: 160px;
  position: relative;
}

.hero::before {
  background: radial-gradient(circle at var(--hero-mouse-x) var(--hero-mouse-y), rgba(234, 255, 0, 0.045), transparent 18%),
    radial-gradient(circle at calc(var(--hero-mouse-x) + 12%) calc(var(--hero-mouse-y) - 10%), rgba(51, 221, 203, 0.04), transparent 22%);
  content: "";
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
  position: absolute;
  transition: opacity 220ms ease;
}

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

.hero-copy,
.section-heading {
  max-width: 680px;
}

.eyebrow {
  color: var(--accent);
  margin: 0 0 18px;
}

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

h1 {
  font-size: clamp(54px, 7vw, 108px);
  font-weight: 800;
  line-height: 0.98;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 750;
  line-height: 1.05;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  font-weight: 750;
  line-height: 1.2;
  margin-bottom: 12px;
}

.lede,
.section-heading p,
.contact-section p {
  color: var(--muted);
  font-size: 18px;
  max-width: 600px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 10px;
}

.button {
  border: 1px solid transparent;
  display: inline-flex;
  justify-content: center;
  padding: 16px 24px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.glow-cta {
  align-items: center;
  background: linear-gradient(90deg, var(--accent) 0%, #c9ff2a 44%, var(--teal) 100%);
  border: 1px solid rgba(234, 255, 0, 0.72);
  border-radius: 0;
  box-shadow: 0 0 54px -14px rgba(234, 255, 0, 0.92),
    0 0 42px -24px rgba(51, 221, 203, 0.9),
    inset 0 0 16px rgba(255, 255, 255, 0.36);
  color: #111206;
  gap: 8px;
  height: 56px;
  isolation: isolate;
  overflow: hidden;
  padding: 0 40px;
  position: relative;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.28);
}

.glow-cta::before {
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.5), transparent 46%),
    radial-gradient(circle at 50% 100%, rgba(51, 221, 203, 0.28), transparent 48%);
  content: "";
  inset: 0;
  mix-blend-mode: overlay;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.glow-cta::after {
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: inherit;
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.48);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.glow-cta span {
  position: relative;
  z-index: 1;
}

.glow-cta:hover {
  box-shadow: 0 0 76px -12px rgba(234, 255, 0, 0.98),
    0 0 54px -20px rgba(51, 221, 203, 0.9),
    inset 0 0 20px rgba(255, 255, 255, 0.52);
  transform: scale(1.03);
}

.glow-cta:hover::after {
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.66);
}

.glow-cta:active {
  transform: scale(0.98);
}

.button-secondary {
  align-items: center;
  background: transparent;
  border-color: var(--border);
  color: var(--text);
  min-height: 56px;
  padding-bottom: 0;
  padding-top: 0;
  text-align: center;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--muted);
}

.browser-card {
  --card-glow-x: 78%;
  --card-glow-y: 24%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift-x: 0px;
  --lift-y: 0px;
  background: #10110d;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  position: relative;
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translate3d(var(--lift-x), var(--lift-y), 0);
  transform-style: preserve-3d;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 140ms ease-out;
  will-change: transform;
}

.browser-card::before {
  background: radial-gradient(circle at var(--card-glow-x) var(--card-glow-y), rgba(234, 255, 0, 0.07), transparent 18%),
    radial-gradient(circle at calc(var(--card-glow-x) - 20%) calc(var(--card-glow-y) + 20%), rgba(51, 221, 203, 0.07), transparent 22%);
  content: "";
  inset: 36px 0 0;
  opacity: 0.48;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.browser-card > * {
  position: relative;
  z-index: 2;
}

.browser-bar {
  align-items: center;
  background: var(--surface-soft);
  display: flex;
  gap: 8px;
  height: 36px;
  padding: 0 16px;
}

.browser-bar span {
  background: var(--faint);
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.mock-site {
  background:
    radial-gradient(circle at 80% 16%, rgba(51, 221, 203, 0.18), transparent 28%),
    radial-gradient(circle at 18% 85%, rgba(234, 255, 0, 0.14), transparent 30%),
    #0d0e0a;
  min-height: 460px;
  padding: 36px;
}

.mock-topline {
  align-items: center;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  padding-bottom: 24px;
}

.mini-brand img {
  height: 40px;
  width: 40px;
}

.mini-brand strong {
  font-size: 14px;
}

.mini-brand em {
  font-size: 10px;
}

.mock-topline span,
.mock-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.mock-grid {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: 1.1fr 0.9fr;
  padding-top: 72px;
}

.mock-grid h2 {
  color: var(--accent);
  font-size: clamp(36px, 5vw, 70px);
}

.mock-panel {
  --panel-x: 0px;
  --panel-y: 0px;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  min-height: 240px;
  overflow: hidden;
  padding: 28px;
  position: relative;
  transform: translate3d(var(--panel-x), var(--panel-y), 0);
  transition: transform 160ms ease-out, border-color 180ms ease;
  will-change: transform;
}


.particle-panel {
  background: radial-gradient(circle at 50% 50%, rgba(51, 221, 203, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.035);
}

.particle-orb {
  aspect-ratio: 1;
  max-width: 300px;
  position: relative;
  width: min(86%, 300px);
}

.particle-orb canvas {
  display: block;
  height: 100%;
  width: 100%;
}

.orb-label {
  color: rgba(244, 244, 235, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  pointer-events: none;
  position: absolute;
  text-transform: uppercase;
}

.orb-label-top {
  right: -18px;
  top: 36%;
}

.orb-label-bottom {
  bottom: 18%;
  left: -20px;
}

.section-heading {
  margin-bottom: 56px;
}

.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.centered p {
  margin-left: auto;
  margin-right: auto;
}

#services {
  overflow: hidden;
  position: relative;
}

#services::before {
  background: radial-gradient(ellipse at 18% 0%, rgba(234, 255, 0, 0.075), transparent 42%),
    radial-gradient(ellipse at 58% 4%, rgba(51, 221, 203, 0.05), transparent 46%),
    linear-gradient(180deg, rgba(234, 255, 0, 0.035), rgba(51, 221, 203, 0.018) 44%, transparent 78%);
  content: "";
  height: 620px;
  left: -8%;
  pointer-events: none;
  position: absolute;
  right: -8%;
  top: -320px;
}

#services > * {
  position: relative;
  z-index: 1;
}

.service-word {
  display: inline-block;
  position: relative;
  white-space: nowrap;
}

.visitors-word {
  color: var(--accent);
  text-shadow: 0 0 24px rgba(234, 255, 0, 0.22);
}

.inquiries-word {
  color: var(--teal);
  text-shadow: 0 0 22px rgba(51, 221, 203, 0.2);
}

.service-grid {
  border-left: 1px solid var(--border-soft);
  border-top: 1px solid var(--border-soft);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  background: rgba(21, 23, 19, 0.86);
  border-bottom: 1px solid var(--border-soft);
  border-right: 1px solid var(--border-soft);
  min-height: 280px;
  overflow: hidden;
  padding: 34px;
  position: relative;
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.service-card::before {
  background: radial-gradient(circle at 18% 12%, rgba(234, 255, 0, 0.14), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(51, 221, 203, 0.12), transparent 38%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 260ms ease;
}

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

.service-card:hover,
.service-card.is-active {
  background: rgba(28, 31, 26, 0.96);
  border-color: rgba(234, 255, 0, 0.26);
  box-shadow: inset 0 0 0 1px rgba(234, 255, 0, 0.12),
    0 0 34px -24px rgba(234, 255, 0, 0.75),
    0 0 34px -26px rgba(51, 221, 203, 0.7);
  transform: translateY(-4px);
}

.service-card:hover::before,
.service-card.is-active::before {
  opacity: 1;
}

.material-symbols-outlined {
  color: var(--accent);
  display: inline-block;
  font-variation-settings: "FILL" 0, "wght" 420, "GRAD" 0, "opsz" 24;
  margin-bottom: 28px;
}

.service-card p,
.process-item p,
.package-card li,
.compare-card p {
  color: var(--muted);
}

.surface-section,
.process-section {
  background: rgba(21, 23, 19, 0.78);
  border-bottom: 1px solid var(--border-soft);
  border-top: 1px solid var(--border-soft);
}

#focus {
  overflow: hidden;
  position: relative;
}

#focus::before {
  background: radial-gradient(circle at var(--focus-x, 50%) 42%, rgba(51, 221, 203, 0.11), transparent 28%),
    radial-gradient(circle at var(--focus-x, 50%) 58%, rgba(234, 255, 0, 0.07), transparent 34%);
  content: "";
  inset: 0;
  opacity: 0.78;
  pointer-events: none;
  position: absolute;
  transition: background 420ms ease;
}

#focus > * {
  position: relative;
  z-index: 1;
}

.audience-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.audience-card {
  background: rgba(28, 31, 26, 0.82);
  border: 1px solid var(--border-soft);
  cursor: pointer;
  min-height: 170px;
  overflow: hidden;
  padding: 26px;
  position: relative;
  text-align: center;
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.audience-card::before {
  background: linear-gradient(90deg, var(--accent), var(--teal));
  content: "";
  height: 3px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 260ms ease;
}

.audience-card::after {
  background: radial-gradient(circle at 50% 0%, rgba(51, 221, 203, 0.16), transparent 48%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 260ms ease;
}

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

.audience-card:hover,
.audience-card.is-active {
  background: rgba(32, 37, 30, 0.96);
  border-color: rgba(51, 221, 203, 0.38);
  box-shadow: 0 0 34px -24px rgba(51, 221, 203, 0.85),
    inset 0 0 0 1px rgba(234, 255, 0, 0.09);
  transform: translateY(-4px);
}

.audience-card:hover::before,
.audience-card.is-active::before,
.audience-card:hover::after,
.audience-card.is-active::after {
  opacity: 1;
}

.audience-card .material-symbols-outlined {
  color: var(--teal);
}

.audience-card h3 {
  font-size: 15px;
  text-transform: uppercase;
}

.audience-insight {
  background: rgba(12, 14, 10, 0.72);
  border: 1px solid var(--border-soft);
  display: grid;
  gap: 8px;
  margin: 28px auto 0;
  max-width: 760px;
  min-height: 142px;
  padding: 28px;
  text-align: center;
}

.audience-insight h3 {
  color: var(--teal);
  margin-bottom: 4px;
}

.audience-insight p:last-child {
  color: var(--muted);
  margin: 0 auto;
  max-width: 620px;
}

.split-section {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  position: relative;
}

.split-section::before {
  background: radial-gradient(circle at 74% 18%, rgba(234, 255, 0, 0.08), transparent 30%),
    radial-gradient(circle at 50% 22%, rgba(51, 221, 203, 0.045), transparent 32%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transition: background 420ms ease;
}

.split-section > * {
  position: relative;
  z-index: 1;
}

.compare-card {
  background: rgba(21, 23, 19, 0.9);
  border: 1px solid var(--border-soft);
  min-height: 360px;
  overflow: hidden;
  padding: 48px;
  position: relative;
  transition: background 280ms ease, border-color 280ms ease, box-shadow 280ms ease, transform 280ms ease;
}

.compare-card::before {
  background: radial-gradient(circle at 12% 0%, rgba(244, 244, 235, 0.08), transparent 38%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 280ms ease;
}

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

.compare-card.is-active {
  background: rgba(28, 31, 26, 0.96);
  box-shadow: 0 0 38px -28px rgba(234, 255, 0, 0.75),
    inset 0 0 0 1px rgba(234, 255, 0, 0.08);
  transform: translateY(-4px);
}

.compare-card.is-active::before {
  opacity: 1;
}

.compare-muted h2 {
  color: var(--faint);
  text-decoration: line-through;
}

.compare-bright {
  border-color: rgba(234, 255, 0, 0.42);
}

.compare-bright.is-active {
  border-color: rgba(234, 255, 0, 0.8);
}

.compare-bright h2 {
  color: var(--accent);
}

.process-section {
  display: grid;
  gap: 64px;
  grid-template-columns: 0.8fr 1.2fr;
  overflow: hidden;
  position: relative;
}


.process-section > * {
  position: relative;
  z-index: 1;
}

.sticky-title {
  align-self: start;
  position: sticky;
  top: 120px;
}

.glow-underline {
  display: inline-block;
  position: relative;
}

.glow-underline::after {
  background: linear-gradient(90deg, var(--accent), var(--teal));
  bottom: 0.03em;
  box-shadow: 0 0 18px rgba(234, 255, 0, 0.42),
    0 0 20px rgba(51, 221, 203, 0.24);
  content: "";
  height: 0.08em;
  left: 0;
  position: absolute;
  right: 0;
  transform: translateY(0.16em);
}

.glow-underline-strategic::after {
  background: linear-gradient(90deg, var(--teal), var(--accent));
}

.process-list {
  display: grid;
  gap: 72px;
}

.process-item {
  border-left: 2px solid transparent;
  display: grid;
  gap: 24px;
  grid-template-columns: 90px minmax(0, 1fr);
  margin-left: -18px;
  padding: 18px 0 18px 18px;
  transition: border-color 260ms ease, transform 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.process-item:hover,
.process-item.is-active {
  background: radial-gradient(circle at 12% 50%, rgba(234, 255, 0, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(234, 255, 0, 0.055), rgba(51, 221, 203, 0.025) 42%, transparent 78%);
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(234, 255, 0, 0.06),
    0 0 34px -28px rgba(234, 255, 0, 0.86);
  transform: translateX(8px);
}

.process-item h3 {
  transition: color 260ms ease, text-shadow 260ms ease;
}

.process-item:hover h3,
.process-item.is-active h3 {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(234, 255, 0, 0.18);
}

.process-item > span {
  color: rgba(244, 244, 235, 0.12);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  transition: color 260ms ease, text-shadow 260ms ease;
}

.process-item:hover > span,
.process-item.is-active > span {
  color: rgba(51, 221, 203, 0.48);
  text-shadow: 0 0 22px rgba(51, 221, 203, 0.18);
}

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

.package-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 40px;
  position: relative;
}

.package-card.featured {
  background: linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(120deg, var(--accent), #c9ff2a 44%, var(--teal)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 0 62px -30px rgba(234, 255, 0, 0.92),
    0 0 54px -34px rgba(51, 221, 203, 0.9),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  isolation: isolate;
  overflow: hidden;
  padding-top: 54px;
  transform: translateY(-16px);
}

.package-card.featured::before {
  background: radial-gradient(circle at 50% 0%, rgba(234, 255, 0, 0.16), transparent 42%),
    radial-gradient(circle at 100% 24%, rgba(51, 221, 203, 0.14), transparent 38%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.package-card.featured::after {
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.12);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.package-card.featured .button {
  background: linear-gradient(90deg, var(--accent), #c9ff2a 44%, var(--teal));
  border-color: rgba(255, 255, 255, 0.44);
  box-shadow: 0 0 48px -18px rgba(234, 255, 0, 0.9),
    inset 0 0 16px rgba(255, 255, 255, 0.28);
  color: #111206;
}

.package-card.featured .button:hover {
  box-shadow: 0 0 68px -16px rgba(234, 255, 0, 0.95),
    0 0 46px -24px rgba(51, 221, 203, 0.78),
    inset 0 0 20px rgba(255, 255, 255, 0.4);
}

.popular {
  background: linear-gradient(90deg, var(--accent), #c9ff2a 52%, var(--teal));
  color: #111206;
  padding: 8px 12px;
  position: absolute;
  right: 24px;
  top: 22px;
  white-space: nowrap;
  z-index: 2;
}

.package-card ul {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 12px 0 auto;
  padding: 0;
}

.package-card li {
  align-items: center;
  display: flex;
  gap: 10px;
}

.package-card li .material-symbols-outlined {
  font-size: 18px;
  margin: 0;
}

.package-card .button {
  margin-top: 48px;
}

.contact-section {
  background: var(--accent);
  color: #111206;
  display: grid;
  gap: 56px;
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-section .eyebrow,
.contact-section p,
.contact-section span {
  color: #111206;
}

.contact-section h2 span {
  display: block;
}

.contact-form {
  background: #111206;
  border-radius: 8px;
  color: var(--text);
  display: grid;
  gap: 18px;
  padding: 32px;
}

.contact-form label {
  color: var(--muted);
  display: grid;
  font-size: 12px;
  font-weight: 800;
  min-width: 0;
  gap: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form .field-label {
  align-items: baseline;
  color: var(--muted);
  display: inline-flex;
  gap: 4px;
}

.contact-form .required-star {
  color: #ff3b30;
  font-size: 11px;
  line-height: 1;
  text-shadow: 0 0 10px rgba(255, 59, 48, 0.45);
}

.contact-form input,
.contact-form textarea {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  display: block;
  font: inherit;
  min-width: 0;
  padding: 14px;
  width: 100%;
}

.contact-form textarea {
  height: 180px;
  max-height: 180px;
  min-height: 180px;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  outline: none;
}

.form-message {
  border: 1px solid var(--border-soft);
  margin: 0;
  padding: 12px;
}

.form-message.success {
  border-color: rgba(234, 255, 0, 0.6);
}

.form-message.error {
  border-color: #ff7777;
}

.site-footer {
  align-items: center;
  background: #090a07;
  border-top: 1px solid var(--border-soft);
  display: flex;
  gap: 32px;
  justify-content: space-between;
  min-height: 112px;
  padding: 6px 40px;
}

.site-footer img {
  height: 106px;
  max-width: min(440px, 100%);
  object-fit: contain;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a,
.site-footer p {
  color: var(--faint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--accent);
}

@media (max-width: 980px) {
  .site-nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .section,
  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero,
  .process-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .package-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .audience-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .sticky-title {
    position: static;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .brand img {
    height: 42px;
    width: 42px;
  }

  .nav-cta {
    padding: 12px 14px;
  }

  .mock-site {
    min-height: 360px;
    padding: 22px;
  }

  .mock-grid {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .mock-panel {
    min-height: 180px;
  }

  .audience-row {
    grid-template-columns: 1fr;
  }

  .process-item {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}


@media (prefers-reduced-motion: reduce) {
  .browser-card,
  .mock-panel {
    transform: none;
    transition: none;
  }

  .hero::before,
  .browser-card::before {
    display: none;
  }
}


