:root {
  --color-primary: #6e0280;
  --color-primary-dark: #520260;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-text: #1e1e1e;
  --color-muted: #5c5c62;
  --color-border: #e8e2ea;
  --color-surface: #ffffff;
  --color-surface-alt: #f8f5f8;
  --color-surface-strong: #f2ecf3;
  --shadow-soft: 0 18px 45px rgba(23, 14, 26, 0.08);
  --shadow-card: 0 10px 30px rgba(18, 11, 20, 0.06);
  --radius-large: 28px;
  --radius-medium: 20px;
  --radius-small: 14px;
  --container-width: 1180px;
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top right, rgba(110, 2, 128, 0.08), transparent 22%),
    linear-gradient(180deg, #fcfbfc 0%, #ffffff 40%, #faf8fa 100%);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), border-color var(--transition), background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

a:hover {
  color: var(--color-primary);
}

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

h1,
h2,
h3 {
  color: var(--color-black);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

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

.section {
  padding: 5rem 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.82);
}

.section-soft-border {
  border-top: 1px solid rgba(110, 2, 128, 0.08);
  border-bottom: 1px solid rgba(110, 2, 128, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.eyebrow::before {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  min-height: 4.35rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  color: var(--color-black);
}

.brand-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-plate img {
  width: 214px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(17, 17, 17, 0.06));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav a:not(.btn) {
  position: relative;
  padding-bottom: 0.2rem;
  font-weight: 600;
  color: var(--color-muted);
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--color-primary);
  transition: transform var(--transition);
}

.site-nav a:not(.btn):hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: var(--color-black);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

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

.btn-primary {
  color: var(--color-white);
  background: var(--color-primary);
  box-shadow: 0 14px 26px rgba(110, 2, 128, 0.18);
}

.btn-primary:hover {
  color: var(--color-white);
  background: var(--color-primary-dark);
}

.btn-secondary {
  border-color: rgba(110, 2, 128, 0.16);
  color: var(--color-black);
  background: rgba(255, 255, 255, 0.78);
}

.btn-secondary:hover {
  border-color: rgba(110, 2, 128, 0.38);
  background: rgba(110, 2, 128, 0.04);
}

.btn-small {
  padding: 0.78rem 1.15rem;
  font-size: 0.95rem;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 5.5rem;
}

.hero-grid,
.split-layout,
.contact-layout {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.95fr);
  align-items: center;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-mountain-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-mountain {
  position: absolute;
  left: 50%;
  bottom: 6.2rem;
  width: min(320rem, 460%);
  height: min(88rem, 128vh);
  transform: translateX(-50%) translateY(0.2rem) scaleX(1.48) scaleY(1.12);
  opacity: 0;
  object-fit: contain;
  clip-path: polygon(0% 100%, 0% 72%, 6% 64%, 10% 58%, 14% 63%, 18% 56%, 24% 58%, 31% 47%, 37% 36%, 42% 24%, 47% 12%, 55% 28%, 63% 43%, 70% 53%, 76% 47%, 82% 57%, 88% 63%, 94% 70%, 100% 76%, 100% 100%);
}

.hero-mountain-back {
  opacity: 0;
  filter: grayscale(1) brightness(0.14) contrast(1.18) blur(2px);
  animation: mountainIntroBack 3.2s ease-out 0.05s 1 forwards;
}

.hero-mountain-front {
  opacity: 0;
  filter: grayscale(1) brightness(0.08) contrast(1.55);
  animation: mountainIntroFront 3.1s cubic-bezier(0.2, 0.72, 0.2, 1) 0.08s 1 forwards;
}

.hero-orb,
.hero-speck,
.hero-plume,
.hero-bubble {
  position: absolute;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-orb {
  border-radius: 999px;
  filter: blur(10px);
}

.hero-orb-one {
  top: 2.4rem;
  left: -4rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(110, 2, 128, 0.08) 0%, rgba(110, 2, 128, 0) 72%);
  animation: heroFloatOne 2.4s ease-out 0.1s forwards;
}

.hero-orb-two {
  top: 7rem;
  right: 12%;
  width: 12rem;
  height: 12rem;
  background: radial-gradient(circle, rgba(110, 2, 128, 0.06) 0%, rgba(110, 2, 128, 0) 74%);
  animation: heroFloatTwo 2.8s ease-out 0.35s forwards;
}

.hero-orb-three {
  right: -2rem;
  bottom: 2rem;
  width: 19rem;
  height: 19rem;
  background: radial-gradient(circle, rgba(110, 2, 128, 0.07) 0%, rgba(110, 2, 128, 0) 74%);
  animation: heroFloatThree 2.6s ease-out 0.25s forwards;
}

.hero-speck {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(110, 2, 128, 0.12) 0%, rgba(110, 2, 128, 0.04) 42%, rgba(110, 2, 128, 0) 74%);
  filter: blur(8px);
  animation: heroSpeckPulse 4.8s ease-in-out infinite;
}

.hero-speck-one {
  top: 4.4rem;
  left: 10%;
  animation-delay: 0.2s;
}

.hero-speck-two {
  top: 10rem;
  left: 18%;
  width: 2.3rem;
  height: 2.3rem;
  animation-delay: 1.35s;
}

.hero-speck-three {
  top: 5.8rem;
  left: 34%;
  width: 2.8rem;
  height: 2.8rem;
  animation-delay: 2.1s;
}

.hero-speck-four {
  top: 4.2rem;
  right: 26%;
  width: 2.5rem;
  height: 2.5rem;
  animation-delay: 0.9s;
}

.hero-speck-five {
  top: 8.8rem;
  right: 15%;
  animation-delay: 2.8s;
}

.hero-speck-six {
  top: 14rem;
  right: 9%;
  width: 2rem;
  height: 2rem;
  animation-delay: 1.8s;
}

.hero-speck-seven {
  top: 14.5rem;
  left: 8%;
  width: 2.6rem;
  height: 2.6rem;
  animation-delay: 3.3s;
}

.hero-speck-eight {
  top: 12rem;
  left: 49%;
  width: 2.2rem;
  height: 2.2rem;
  animation-delay: 4.1s;
}

.hero-plume {
  bottom: -10rem;
  width: 12rem;
  height: 34rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(110, 2, 128, 0) 0%, rgba(110, 2, 128, 0.05) 14%, rgba(110, 2, 128, 0.11) 45%, rgba(110, 2, 128, 0.04) 78%, rgba(110, 2, 128, 0) 100%);
  filter: blur(18px);
}

.hero-plume-one {
  left: 7%;
  animation: heroPlumeRise 3.8s ease-out 0.05s 1 forwards;
}

.hero-plume-two {
  left: 36%;
  width: 16rem;
  height: 40rem;
  animation: heroPlumeRise 4.2s ease-out 0.22s 1 forwards;
}

.hero-plume-three {
  right: 9%;
  width: 14rem;
  height: 38rem;
  animation: heroPlumeRise 4s ease-out 0.14s 1 forwards;
}

.hero-fade {
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.95s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-fade-delay-one {
  animation-delay: 0.2s;
}

.hero-fade-delay-two {
  animation-delay: 0.42s;
}

.hero-text {
  max-width: 44rem;
  margin-bottom: 1.75rem;
  font-size: 1.08rem;
  color: var(--color-muted);
}

.hero-actions,
.cta-actions,
.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.pricing-actions .btn {
  white-space: nowrap;
  padding-inline: 1.2rem;
}

.hero-points {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 1.6rem 0 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--color-muted);
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 0.66rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--color-primary);
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.hero-card-grid,
.card-grid,
.coverage-notes {
  display: grid;
  gap: 1rem;
}

.hero-card,
.info-card,
.mini-panel,
.service-card,
.form-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.hero-card {
  padding: 1.5rem;
}

.hero-card-primary {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(110, 2, 128, 0.9), rgba(29, 7, 36, 0.96));
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.hero-card-primary h2,
.hero-card-primary p {
  color: var(--color-white);
}

.card-kicker {
  margin-bottom: 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.84);
}

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

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

.info-card {
  padding: 1.6rem;
}

.card-icon,
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-size: 1.15rem;
  color: var(--color-primary);
  background: rgba(110, 2, 128, 0.08);
}

.card-icon svg,
.service-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  fill: currentColor;
}

.card-icon img,
.service-icon img,
.brand-icon-image {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
}

.gorgias-symbol {
  background-color: var(--color-primary);
  -webkit-mask-image: url("https://cdn.prod.website-files.com/5e4ff204e7b6f80e402d407a/65a7e49c2c8357e27b901ae1_Symbol%20-%20Dark.svg");
  mask-image: url("https://cdn.prod.website-files.com/5e4ff204e7b6f80e402d407a/65a7e49c2c8357e27b901ae1_Symbol%20-%20Dark.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.section-heading {
  max-width: 42rem;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.align-left {
  margin: 0 0 1.8rem;
  text-align: left;
}

.stacked-copy {
  display: grid;
  gap: 1rem;
}

.split-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.coverage-panel,
.pricing-box,
.cta-banner {
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.coverage-notes {
  grid-template-columns: 1fr;
}

.coverage-copy {
  display: grid;
  align-content: start;
  gap: 1.15rem;
}

.coverage-copy > p {
  margin: 0;
}

.coverage-panel-compact {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.coverage-intro {
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(110, 2, 128, 0.12);
  border-radius: var(--radius-medium);
  background:
    radial-gradient(circle at top right, rgba(110, 2, 128, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.coverage-intro-label {
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.coverage-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.8rem;
}

.coverage-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.72rem;
  border: 1px solid rgba(110, 2, 128, 0.12);
  border-radius: 999px;
  background: rgba(110, 2, 128, 0.06);
  color: var(--color-primary);
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1;
}

.coverage-intro-copy {
  margin: 0;
  color: var(--color-muted);
}

.coverage-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.coverage-note-wide {
  grid-column: 1 / -1;
}

.route-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 248, 0.95));
  box-shadow: var(--shadow-card);
}

.route-figure img {
  width: 100%;
  display: block;
  border-bottom: 1px solid rgba(110, 2, 128, 0.08);
  filter: contrast(1.04) brightness(1.01) saturate(0.92);
}

.route-figure figcaption {
  padding: 1rem 1.2rem 1.15rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.mini-panel {
  padding: 1.25rem 1.35rem;
}

.pricing-box,
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.page-hero {
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.narrow-copy {
  max-width: 52rem;
}

.service-stack {
  display: grid;
  gap: 1rem;
}

.service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.6rem;
  align-items: start;
}

.contact-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.75fr);
  align-items: start;
}

.form-card {
  padding: 2rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-small);
  font: inherit;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(110, 2, 128, 0.5);
  box-shadow: 0 0 0 4px rgba(110, 2, 128, 0.08);
}

.form-status {
  min-height: 1.5rem;
  margin: 0.35rem 0 0;
  color: var(--color-primary);
  font-weight: 600;
}

.contact-sidebar {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.5rem;
}

.site-footer {
  padding-top: 4rem;
  color: rgba(255, 255, 255, 0.8);
  background: #111012;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
}

.brand-footer {
  margin-bottom: 1rem;
  color: var(--color-white);
}

.brand-footer .brand-plate img {
  width: 248px;
  filter: brightness(0) saturate(100%) invert(11%) sepia(95%) saturate(3835%) hue-rotate(286deg) brightness(79%) contrast(117%);
}

.footer-copy {
  max-width: 28rem;
}

.site-footer h3 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  list-style: none;
}

.footer-links a:hover {
  color: #d788e5;
}

.footer-bottom {
  margin-top: 2rem;
  padding: 1.25rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(110, 2, 128, 0.16);
  border-radius: 999px;
  background: var(--color-white);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 1.15rem;
  height: 2px;
  background: var(--color-black);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.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;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mountainIntroBack {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(1.6rem) scale(0.92);
  }

  18% {
    opacity: 0.22;
    transform: translateX(-50%) translateY(0.8rem) scale(0.96);
  }

  56% {
    opacity: 0.16;
    transform: translateX(-50%) translateY(0.25rem) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-0.4rem) scale(1.02);
  }
}

@keyframes mountainIntroFront {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(1.2rem) scale(0.95);
  }

  14% {
    opacity: 0.18;
    transform: translateX(-50%) translateY(0.55rem) scale(0.98);
  }

  44% {
    opacity: 0.14;
    transform: translateX(-50%) translateY(0.15rem) scale(1);
  }

  78% {
    opacity: 0.08;
    transform: translateX(-50%) translateY(-0.2rem) scale(1.01);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-0.55rem) scale(1.015);
  }
}

@keyframes heroFloatOne {
  from {
    opacity: 0;
    transform: translate3d(-1.5rem, 1rem, 0) scale(0.9);
  }

  to {
    opacity: 0.45;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroFloatTwo {
  from {
    opacity: 0;
    transform: translate3d(0.5rem, -1.1rem, 0) scale(0.88);
  }

  to {
    opacity: 0.32;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroFloatThree {
  from {
    opacity: 0;
    transform: translate3d(1.5rem, 1rem, 0) scale(0.88);
  }

  to {
    opacity: 0.38;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroSpeckPulse {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.72);
  }

  18% {
    opacity: 0.15;
    transform: scale(0.92);
  }

  38% {
    opacity: 0.22;
    transform: scale(1);
  }

  62% {
    opacity: 0.1;
    transform: scale(1.05);
  }
}

@keyframes heroPlumeRise {
  from {
    opacity: 0;
    transform: translate3d(0, 5rem, 0) scaleY(0.92);
  }

  to {
    opacity: 0.3;
    transform: translate3d(0, -11rem, 0) scaleY(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mountain,
  .hero-orb,
  .hero-speck,
  .hero-plume,
  .hero-fade {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .card-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .contact-layout,
  .footer-grid,
  .split-layout,
  .pricing-box,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .pricing-box,
  .cta-banner {
    display: grid;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 4rem 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 1rem;
    padding: 1.2rem;
    border: 1px solid var(--color-border);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-cta {
    width: 100%;
  }

  .header-inner {
    position: relative;
  }

}

@media (max-width: 640px) {
  .hero-card-grid,
  .card-grid-three,
  .card-grid-four,
  .service-card {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 4rem;
  }

  .hero-mountain {
    width: 540%;
    height: 58rem;
    bottom: 5rem;
    transform: translateX(-50%) translateY(0.1rem) scaleX(1.4) scaleY(1.08);
  }

  .hero-orb-one {
    width: 13rem;
    height: 13rem;
  }

  .hero-orb-three {
    width: 14rem;
    height: 14rem;
  }

  .hero-plume {
    display: none;
  }

  .hero-speck {
    display: none;
  }

  .brand {
    gap: 0;
  }

  .brand-plate {
    padding: 0;
    border-radius: 0;
  }

  .brand-plate img,
  .brand-footer .brand-plate img {
    width: 168px;
  }

  .coverage-panel,
  .pricing-box,
  .cta-banner,
  .form-card {
    padding: 1.4rem;
  }

  .coverage-panel-compact {
    grid-template-columns: 1fr;
  }

  .coverage-note-grid {
    grid-template-columns: 1fr;
  }
}
