:root {
  --ink: #211765;
  --ink-2: #33259c;
  --orange: #f25a28;
  --orange-2: #ff8a45;
  --teal: #157a74;
  --sky: #d8eef4;
  --green: #d7f3df;
  --lemon: #fff1a8;
  --mist: #f4f6fb;
  --paper: #ffffff;
  --charcoal: #1e2330;
  --muted: #626b7c;
  --line: #dce2ee;
  --shadow: 0 20px 55px rgba(24, 29, 54, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background:
    linear-gradient(rgba(33, 23, 101, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 23, 101, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

main {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 30px);
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: clamp(18px, 4vw, 56px);
  right: clamp(18px, 4vw, 56px);
  bottom: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--teal), var(--ink));
  transform-origin: left;
}

.brand {
  display: block;
  width: 132px;
  height: 76px;
  padding: 4px;
  overflow: visible;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.footer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px;
  border: 1px solid rgba(33, 23, 101, 0.1);
  border-radius: 999px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(216, 238, 244, 0.46)),
    #ffffff;
  box-shadow: 0 12px 34px rgba(33, 23, 101, 0.08);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a {
  position: relative;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.nav a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(242, 90, 40, 0.11);
  opacity: 0;
  transform: scale(0.5);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav a:hover {
  color: var(--orange);
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(-1px);
}

.nav a:hover::before,
.nav a:hover::after {
  opacity: 1;
  transform: scale(1);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
}

.header-cta {
  position: relative;
  gap: 10px;
  padding: 0 18px;
  color: var(--paper);
  background:
    linear-gradient(135deg, var(--ink), var(--ink-2));
  box-shadow: 0 10px 24px rgba(33, 23, 101, 0.18);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.header-cta::before {
  content: "";
  width: 16px;
  height: 20px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 48%, 63% 58%, 84% 100%, 58% 100%, 39% 63%, 12% 88%);
  transform: rotate(-8deg);
}

.header-cta:hover {
  background: var(--ink-2);
  transform: translateY(-1px);
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 4vw, 56px);
}

section[id] {
  scroll-margin-top: 128px;
}

.hero {
  min-height: calc(100vh - 80px);
  padding-top: clamp(30px, 4vw, 44px);
  padding-bottom: clamp(30px, 4vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  align-items: center;
  gap: clamp(36px, 7vw, 88px);
  background:
    radial-gradient(circle at 9% 26%, rgba(242, 90, 40, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 18% 34%, rgba(33, 23, 101, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 13% 42%, rgba(21, 122, 116, 0.16) 0 2px, transparent 3px),
    linear-gradient(135deg, rgba(216, 238, 244, 0.72), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
  background-size:
    86px 86px,
    106px 106px,
    118px 118px,
    auto,
    auto;
  overflow: hidden;
}

.hero-copy,
.section-heading,
.proof-copy,
.contact-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(3rem, 4.3vw, 3.95rem);
  line-height: 1;
  letter-spacing: 0;
  max-width: 820px;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.23rem;
  line-height: 1.18;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  border: 0;
  padding: 0 22px;
  cursor: pointer;
  font-size: 0.98rem;
}

.button.primary {
  color: var(--paper);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 12px 24px rgba(242, 90, 40, 0.2);
}

.button.secondary {
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
}

.button,
.service-card,
.package-card,
.showcase-panel,
.proof-list span {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

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

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-tags span,
.card-tags span,
.panel-kicker {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-tags span {
  padding: 0 13px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(33, 23, 101, 0.06);
}

.hero-visual {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 330px;
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(33, 23, 101, 0.92), rgba(33, 23, 101, 0.72)),
    linear-gradient(180deg, rgba(21, 122, 116, 0.18), rgba(255, 255, 255, 0.96)),
    var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(120deg, transparent, #000 24%, #000 76%, transparent);
}

.target-rings {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 158px;
  aspect-ratio: 1;
  opacity: 0.42;
}

.target-rings span {
  position: absolute;
  inset: calc(var(--ring) * 21px);
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  animation: ringPulse 3.6s ease-in-out infinite;
  animation-delay: calc(var(--ring) * 280ms);
}

.target-rings span:nth-child(1) {
  --ring: 0;
}

.target-rings span:nth-child(2) {
  --ring: 1;
}

.target-rings span:nth-child(3) {
  --ring: 2;
}

.browser-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  margin: 0 auto;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(3, 4, 18, 0.35);
  overflow: hidden;
}

.browser-top {
  display: flex;
  gap: 7px;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  background: #eef3fb;
  border-bottom: 1px solid var(--line);
}

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

.browser-top span:nth-child(2) {
  background: var(--lemon);
}

.browser-top span:nth-child(3) {
  background: var(--teal);
}

.browser-body {
  padding: clamp(18px, 2.4vw, 26px);
  background:
    linear-gradient(135deg, rgba(216, 238, 244, 0.58), rgba(255, 255, 255, 0.7)),
    #ffffff;
}

.browser-body img {
  width: min(280px, 82%);
  margin: 0 auto 14px;
  mix-blend-mode: multiply;
}

.mini-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10px;
}

.mini-layout span {
  min-height: 44px;
  border-radius: 8px;
  background: var(--mist);
  border: 1px solid var(--line);
}

.mini-layout span:first-child {
  grid-row: span 2;
  min-height: 98px;
  background:
    linear-gradient(135deg, var(--orange), var(--orange-2));
}

.cursor-arrow {
  position: absolute;
  z-index: 2;
  right: 42px;
  bottom: 78px;
  width: 54px;
  height: 70px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 48%, 63% 58%, 84% 100%, 58% 100%, 39% 63%, 12% 88%);
  filter: drop-shadow(0 18px 20px rgba(3, 4, 18, 0.32));
  transform: rotate(-8deg);
  animation: cursorNudge 3.8s ease-in-out infinite;
}

.status-pill {
  position: absolute;
  z-index: 2;
  left: 28px;
  top: 28px;
  bottom: auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(21, 122, 116, 0.92);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(3, 4, 18, 0.22);
}

.launch-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.launch-strip span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.84rem;
  font-weight: 800;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.trust-band div {
  min-height: 132px;
  padding: 28px clamp(18px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(216, 238, 244, 0.42)),
    var(--paper);
}

.trust-band strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.1rem;
}

.trust-band span,
.service-card p,
.package-card li,
.timeline p,
.proof-copy p,
.contact-copy p,
.footer p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 70px);
  background: #ffffff;
}

.service-grid,
.package-grid,
.timeline,
.proof-list {
  display: grid;
  gap: 18px;
}

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

.service-card,
.package-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.service-card {
  position: relative;
  min-height: 245px;
  padding: 28px;
  overflow: hidden;
}

.service-card > *:not(.service-graphic) {
  position: relative;
  z-index: 1;
}

.service-graphic {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 116px;
  height: 102px;
  opacity: 0.28;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.service-card:hover .service-graphic {
  opacity: 0.42;
  transform: translateY(-2px);
}

.service-graphic span {
  position: absolute;
  display: block;
  border-radius: 8px;
}

.graphic-website span:first-child {
  inset: 12px 0 18px;
  border: 4px solid var(--ink);
  background:
    linear-gradient(var(--ink) 0 14px, transparent 14px),
    linear-gradient(90deg, var(--orange) 0 8px, transparent 8px 16px, var(--teal) 16px 24px, transparent 24px);
}

.graphic-website span:nth-child(2) {
  left: 16px;
  right: 20px;
  bottom: 34px;
  height: 10px;
  background: var(--orange);
  opacity: 0.7;
}

.graphic-website span:nth-child(3) {
  left: 16px;
  right: 48px;
  bottom: 18px;
  height: 8px;
  background: var(--teal);
}

.graphic-social span:first-child,
.graphic-social span:nth-child(2),
.graphic-social span:nth-child(3) {
  width: 72px;
  height: 88px;
  border: 4px solid var(--ink);
  background: rgba(255, 255, 255, 0.1);
}

.graphic-social span:first-child {
  right: 36px;
  top: 14px;
  transform: rotate(-8deg);
  border-color: var(--orange);
}

.graphic-social span:nth-child(2) {
  right: 18px;
  top: 4px;
  transform: rotate(5deg);
  border-color: var(--teal);
}

.graphic-social span:nth-child(3) {
  right: 0;
  top: 18px;
  background:
    radial-gradient(circle at 50% 52%, var(--orange) 0 9px, transparent 10px),
    repeating-linear-gradient(90deg, var(--ink) 0 5px, transparent 5px 11px);
  border-color: var(--ink);
}

.graphic-domain span:first-child {
  left: 0;
  top: 18px;
  width: 100px;
  height: 64px;
  border: 4px solid var(--ink);
}

.graphic-domain span:nth-child(2) {
  left: 14px;
  top: 38px;
  width: 30px;
  height: 30px;
  border: 4px solid var(--orange);
  border-radius: 50%;
}

.graphic-domain span:nth-child(3) {
  right: 18px;
  top: 47px;
  width: 44px;
  height: 12px;
  border-top: 4px solid var(--teal);
  border-bottom: 4px solid var(--teal);
}

.graphic-support span:first-child {
  inset: 10px 8px 8px 18px;
  border: 4px solid var(--ink);
}

.graphic-support span:nth-child(2),
.graphic-support span:nth-child(3) {
  left: 38px;
  width: 48px;
  height: 20px;
  border-left: 5px solid var(--teal);
  border-bottom: 5px solid var(--teal);
  transform: rotate(-45deg);
}

.graphic-support span:nth-child(2) {
  top: 34px;
}

.graphic-support span:nth-child(3) {
  top: 62px;
  border-color: var(--orange);
}

.service-card:hover,
.showcase-panel:hover,
.proof-list span:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 90, 40, 0.36);
  box-shadow: 0 18px 42px rgba(33, 23, 101, 0.1);
}

.card-mark {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--teal);
  font-weight: 900;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.card-tags span {
  padding: 0 11px;
  color: var(--ink);
  background: var(--mist);
}

.showcase {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(33, 23, 101, 0.96), rgba(21, 122, 116, 0.9)),
    var(--ink);
  color: #ffffff;
}

.showcase-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.showcase h2,
.showcase h3,
.showcase .eyebrow {
  color: #ffffff;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.showcase-panel {
  min-height: 390px;
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.08);
  background-size: 28px 28px;
  overflow: hidden;
}

.showcase-panel h3 {
  max-width: 320px;
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
}

.panel-kicker {
  margin-bottom: 18px;
  padding: 0 12px;
  color: var(--ink);
  background: #ffffff;
}

.panel-lines {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 12px;
}

.panel-lines span {
  display: block;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.panel-lines span:nth-child(2) {
  width: 72%;
  background: var(--orange-2);
}

.panel-lines span:nth-child(3) {
  width: 46%;
  background: var(--sky);
}

.post-stack {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 142px;
  height: 146px;
}

.post-stack span {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 38px rgba(3, 4, 18, 0.18);
}

.post-stack span:nth-child(1) {
  transform: rotate(-8deg) translate(-18px, 8px);
  background: var(--orange);
}

.post-stack span:nth-child(2) {
  transform: rotate(4deg) translate(6px, -8px);
  background: var(--sky);
}

.post-stack span:nth-child(3) {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, var(--orange) 0 15%, transparent 16%),
    repeating-linear-gradient(90deg, var(--ink) 0 10px, transparent 10px 18px),
    #ffffff;
}

.check-grid {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.check-grid span {
  min-height: 62px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(216, 238, 244, 0.78));
}

.check-grid span::before {
  content: "";
  display: block;
  width: 22px;
  height: 12px;
  margin: 20px auto;
  border-left: 4px solid var(--teal);
  border-bottom: 4px solid var(--teal);
  transform: rotate(-45deg);
}

.packages {
  background: var(--mist);
}

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

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

.package-card {
  min-height: 440px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
}

.package-card.featured {
  color: #ffffff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    var(--ink);
  background-size: 28px 28px;
  border-color: var(--ink);
  transform: translateY(-14px);
  box-shadow: var(--shadow);
}

.package-card.featured h3,
.package-card.featured .price,
.package-card.featured li {
  color: #ffffff;
}

.package-card.featured .package-label {
  color: #ffb097;
}

.package-label {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin: 4px 0 24px;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 900;
}

.package-card ul {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  padding: 13px 0;
  border-top: 1px solid rgba(98, 107, 124, 0.18);
}

.process {
  background: #ffffff;
}

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

.timeline div {
  min-height: 236px;
  padding: 26px;
  border-left: 3px solid var(--orange);
  background:
    linear-gradient(135deg, #ffffff, var(--mist));
  border-radius: 0 8px 8px 0;
}

.timeline span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--teal);
  font-weight: 900;
}

.proof {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: center;
  background: var(--ink);
}

.proof h2,
.proof .eyebrow {
  color: #ffffff;
}

.proof-copy p {
  color: rgba(255, 255, 255, 0.74);
}

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

.proof-list span {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(300px, 0.9fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(216, 238, 244, 0.74), rgba(255, 255, 255, 0) 42%),
    #ffffff;
}

.contact-form {
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 7px solid var(--orange);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--ink);
  font-weight: 800;
}

.hidden-field {
  display: none;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--charcoal);
  background: #ffffff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(242, 90, 40, 0.18);
  border-color: var(--orange);
}

@keyframes cursorNudge {
  0%,
  100% {
    transform: rotate(-8deg) translate(0, 0);
  }

  50% {
    transform: rotate(-8deg) translate(-10px, -8px);
  }
}

@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.56;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.9;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer img {
  width: 148px;
  height: 46px;
  overflow: hidden;
}

.footer p {
  margin: 0;
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 20% 18%, rgba(242, 90, 40, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(216, 238, 244, 0.72), rgba(255, 255, 255, 0.94));
}

.success-panel {
  width: min(720px, 100%);
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.success-panel img {
  width: 180px;
  margin-bottom: 36px;
}

.success-panel h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
}

.success-panel p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 28px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    justify-self: start;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 7px;
  }

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

  .hero {
    min-height: auto;
  }

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

  .trust-band,
  .package-grid,
  .timeline,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-panel {
    min-height: 330px;
  }

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

@media (max-width: 680px) {
  .site-header {
    gap: 14px;
    padding: 12px 16px;
  }

  .brand {
    width: 118px;
    height: 68px;
    padding: 3px;
  }

  .header-cta {
    grid-column: 2;
    grid-row: 1;
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.86rem;
  }

  .header-cta::before {
    width: 13px;
    height: 16px;
  }

  .nav {
    grid-row: 2;
    gap: 4px;
    padding: 5px;
    font-size: 0.88rem;
    justify-content: space-between;
  }

  .nav a {
    min-height: 34px;
    padding-inline: 8px;
  }

  .nav a::before {
    display: none;
  }

  .nav a::after {
    left: 10px;
    right: 10px;
  }

  .section {
    padding: 54px 16px;
  }

  section[id] {
    scroll-margin-top: 178px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.1rem);
  }

  h2 {
    font-size: clamp(1.95rem, 10vw, 3rem);
  }

  .hero-actions,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    display: none;
  }

  .launch-strip,
  .service-grid,
  .proof-list {
    grid-template-columns: 1fr;
  }

  .service-card,
  .package-card,
  .timeline div,
  .contact-form {
    padding: 22px;
  }

  .service-graphic {
    top: 20px;
    right: 18px;
    width: 92px;
    height: 82px;
    opacity: 0.22;
  }
}
