:root {
  --black: #050505;
  --ink: #0b0b0c;
  --panel: #121214;
  --panel-2: #1a1a1d;
  --panel-3: #242427;
  --text: #f5f5f3;
  --muted: #b7b7b9;
  --soft: #8e8e92;
  --line: #333337;
  --line-soft: #232326;
  --paper: #ededeb;
  --paper-2: #d8d8d6;
  --dark-text: #111113;
  --gold: #d6b36a;
  --gold-soft: rgba(214, 179, 106, 0.34);
  --gold-main: #d4af37;
  --gold-light: #f7e7a3;
  --gold-dark: #8a6a1f;
  --gold-bronze: #cd962f;
  --gold-amber: #b87a22;
  --gold-pale: #f5d78a;
  --gold-glow: rgba(255, 235, 166, 0.95);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --wrap: 1180px;
  --font-title: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  --cursor-x: 50vw;
  --cursor-y: 50vh;
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(245, 215, 138, 0.18) 0%, rgba(214, 179, 106, 0.1) 9%, rgba(184, 122, 34, 0.045) 18%, transparent 30%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 180ms ease;
}

body.cursor-glow-active::before {
  opacity: 1;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.wrap {
  width: min(calc(100% - 40px), var(--wrap));
  margin-inline: auto;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  clip: auto;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: var(--text);
  color: var(--dark-text);
}

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

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 950;
  letter-spacing: 0.22em;
}

.brand-mark {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 7px;
  object-fit: cover;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nav-links a:not(.btn) {
  padding-block: 8px;
  border-bottom: 1px solid transparent;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.language-button {
  width: 42px;
  min-width: 42px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.language-button:hover,
.language-button:focus-visible,
.language-button.is-active {
  transform: translateY(-1px);
  border-color: rgba(214, 185, 116, 0.58);
  background: rgba(214, 185, 116, 0.14);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links .is-active {
  color: var(--text);
  border-color: var(--paper-2);
}

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

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--paper);
  border-radius: 6px;
  background: var(--paper);
  color: var(--dark-text);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  border-color: var(--text);
  background: var(--text);
}

.btn-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 0.72rem;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--paper-2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.gold-divider {
  --divider-angle: -3deg;
  --divider-angle-soft: 2deg;
  --divider-angle-reverse: -1.5deg;
  --divider-angle-mid: 1deg;
  --divider-angle-end: -1deg;
  --divider-delay: 0ms;
  --divider-delay-layer: 240ms;
  --divider-delay-reverse: 480ms;
  --divider-delay-shine: 620ms;
  --divider-speed: 7.4s;
  --divider-speed-layer: 8.2s;
  --divider-speed-alt: 8.8s;
  --divider-speed-reverse: 9.6s;
  --divider-shine-speed: 2.7s;
  --divider-shift: 0px;
  --divider-opacity: 0.98;
  --divider-opacity-strong: 0.88;
  --divider-opacity-soft: 0.78;
  display: none;
  position: relative;
  z-index: 3;
  width: min(760px, calc(100% - 40px));
  height: 34px;
  margin: 0 auto;
  overflow: hidden;
  contain: paint;
  pointer-events: none;
  opacity: 0.82;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

.gold-line,
.gold-divider::before,
.gold-divider::after,
.gold-line::before,
.gold-line::after {
  content: "";
  position: relative;
  display: block;
  pointer-events: none;
  will-change: transform, opacity;
}

.gold-divider::before,
.gold-divider::after {
  position: absolute;
  left: -16%;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(133, 89, 18, 0.12) 12%,
    rgba(205, 150, 47, 0.68) 32%,
    rgba(255, 238, 166, 0.96) 50%,
    rgba(205, 150, 47, 0.74) 68%,
    transparent 100%
  );
  filter: drop-shadow(0 0 7px rgba(245, 215, 138, 0.22));
}

.gold-divider::before {
  top: calc(11px + var(--divider-shift));
  width: 64%;
  opacity: 0.32;
  transform: rotate(var(--divider-angle-soft)) skewX(-16deg);
  animation: goldWindLayer var(--divider-speed-alt) cubic-bezier(0.45, 0, 0.22, 1) var(--divider-delay) infinite;
}

.gold-divider::after {
  top: calc(23px + var(--divider-shift));
  left: 18%;
  width: 48%;
  opacity: 0.22;
  transform: rotate(var(--divider-angle-reverse)) skewX(14deg) scaleX(0.82);
  animation: goldWindLayerReverse var(--divider-speed-reverse) cubic-bezier(0.45, 0, 0.22, 1) var(--divider-delay-reverse) infinite;
}

.gold-line {
  position: absolute;
  top: 50%;
  left: 4%;
  width: 88%;
  height: 8px;
  overflow: hidden;
  opacity: var(--divider-opacity);
  transform: translateY(-50%) rotate(var(--divider-angle)) skewX(-8deg);
  transform-origin: center;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(133, 89, 18, 0.15) 12%,
      rgba(205, 150, 47, 0.78) 32%,
      rgba(255, 238, 166, 0.98) 50%,
      rgba(205, 150, 47, 0.82) 68%,
      transparent 100%
    ) center 4px / 100% 1px no-repeat,
    linear-gradient(92deg, transparent 0%, rgba(138, 106, 31, 0.06) 18%, rgba(255, 238, 166, 0.24) 47%, rgba(184, 122, 34, 0.12) 67%, transparent 100%) 14% 2px / 58% 1px no-repeat;
  filter: drop-shadow(0 0 5px rgba(245, 215, 138, 0.2));
  animation: goldWindCore var(--divider-speed) cubic-bezier(0.45, 0, 0.22, 1) var(--divider-delay) infinite;
}

.gold-line::before {
  position: absolute;
  top: 2px;
  left: -12%;
  width: 30%;
  height: 3px;
  border-radius: 999px;
  background:
    linear-gradient(92deg, transparent 0%, rgba(133, 89, 18, 0.04) 12%, rgba(205, 150, 47, 0.24) 36%, rgba(245, 215, 138, 0.52) 52%, rgba(205, 150, 47, 0.22) 70%, transparent 100%),
    linear-gradient(90deg, transparent 0%, rgba(255, 244, 200, 0.12) 48%, transparent 78%);
  filter: blur(0.3px) drop-shadow(0 0 4px rgba(245, 215, 138, 0.16));
  opacity: 0.26;
  transform: translate3d(0, -1px, 0) scaleX(0.72) skewX(-18deg);
  animation: goldWindLayer var(--divider-speed-layer) cubic-bezier(0.45, 0, 0.22, 1) var(--divider-delay-layer) infinite;
}

.gold-line::after {
  display: none;
}

.gold-glow {
  --glow-x: 72%;
  --glow-y: 34%;
  position: relative;
  overflow: hidden;
}

.gold-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(245, 215, 138, 0.32) 0%, rgba(205, 150, 47, 0.14) 18%, transparent 46%),
    linear-gradient(118deg, transparent 18%, rgba(138, 106, 31, 0.08), rgba(247, 231, 163, 0.2), rgba(212, 175, 55, 0.1), transparent 78%);
  filter: drop-shadow(0 0 18px rgba(245, 215, 138, 0.22));
  opacity: 0.42;
  transform: translateZ(0);
  animation: goldGlowBreath 5.8s ease-in-out infinite;
}

.gold-glow::after {
  content: "";
  position: absolute;
  inset: 12% -8% 22% 16%;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  background:
    linear-gradient(108deg, transparent 0%, rgba(133, 89, 18, 0.08) 18%, rgba(205, 150, 47, 0.22) 42%, rgba(245, 215, 138, 0.34) 52%, rgba(205, 150, 47, 0.18) 64%, transparent 82%),
    linear-gradient(116deg, transparent 14%, rgba(245, 215, 138, 0.12) 48%, transparent 72%);
  filter: drop-shadow(0 0 18px rgba(245, 215, 138, 0.32));
  opacity: 0.34;
  transform: skewX(-16deg) rotate(-7deg);
  animation: heroGoldStream 8s ease-in-out infinite;
}

.gold-glow.is-pointer-active::before {
  opacity: 0.44;
}

.animated-gold-border {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.animated-gold-border > * {
  position: relative;
  z-index: 1;
}

.animated-gold-border::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(138, 106, 31, 0.12),
    rgba(212, 175, 55, 0.46),
    rgba(247, 231, 163, 0.92),
    rgba(212, 175, 55, 0.36),
    transparent
  );
  background-size: 250% 250%;
  animation: goldBorderMove 6s ease-in-out infinite;
  pointer-events: none;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
}

.symbol-gold-accent {
  position: absolute;
  width: 220px;
  opacity: 0.12;
  filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.25));
  pointer-events: none;
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 46%, rgba(214, 179, 106, 0.16), transparent 34%),
    radial-gradient(circle at 84% 16%, rgba(214, 179, 106, 0.08), transparent 28%),
    linear-gradient(145deg, var(--black), var(--ink) 56%, #0d0d0e);
}

.page-hero {
  background:
    radial-gradient(circle at 72% 46%, rgba(214, 179, 106, 0.16), transparent 34%),
    radial-gradient(circle at 84% 16%, rgba(214, 179, 106, 0.08), transparent 28%),
    linear-gradient(145deg, var(--black), var(--ink) 56%, #0d0d0e);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 42%, rgba(214, 179, 106, 0.14), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(214, 179, 106, 0.07), transparent 28%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.86) 0%, rgba(5, 5, 5, 0.42) 58%, rgba(5, 5, 5, 0.72) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.72;
}

.hero::before {
  opacity: 0.68;
}

.page-hero::before {
  background:
    radial-gradient(circle at 72% 42%, rgba(214, 179, 106, 0.12), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(214, 179, 106, 0.06), transparent 28%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.5) 58%, rgba(5, 5, 5, 0.74) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.74;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.78fr);
  gap: 56px;
  align-items: center;
  padding-block: 96px 108px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--paper-2);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6.2vw, 6rem);
  line-height: 0.95;
}

.section-heading h1,
.section-heading h2,
.proposal-copy h2,
.cta-panel h2,
.cta-row h2,
.privacy-panel h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.lead,
.hero .support,
.page-hero p,
.section-heading p,
.cta-panel p,
.cta-row p,
.proposal-copy p,
.privacy-panel p,
.note {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.lead {
  max-width: 730px;
  margin: 24px 0 0;
  color: var(--text);
}

.hero .support {
  max-width: 620px;
  margin: 16px 0 0;
}

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

.actions.centered {
  justify-content: center;
}

.trust-line {
  margin: 28px 0 0;
  color: var(--paper-2);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  display: block;
  min-height: 460px;
  overflow: visible;
}

.hero-visual.gold-glow::before,
.hero-visual.gold-glow::after {
  display: none;
}

.device {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #202024, #080809);
  box-shadow: var(--shadow);
}

.device-desktop {
  width: min(100%, 520px);
  min-height: 330px;
  right: 0;
  top: 12px;
}

.device-mobile {
  z-index: 3;
  width: 150px;
  min-height: 280px;
  left: 10px;
  bottom: 110px;
  background: #111113;
}

.device-top {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-inline: 18px;
  border-bottom: 1px solid var(--line);
}

.device-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8b8b8d;
}

.device-screen {
  padding: 34px;
}

.screen-line,
.mobile-line,
.mobile-block,
.screen-grid span {
  border-radius: var(--radius);
  background: linear-gradient(135deg, #eeeeec, #7f7f82);
}

.screen-line {
  height: 18px;
  width: 55%;
  margin-bottom: 14px;
}

.screen-line.wide {
  width: 78%;
  height: 28px;
}

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

.screen-grid span {
  min-height: 94px;
  opacity: 0.44;
}

.mobile-notch {
  width: 48px;
  height: 5px;
  margin: 16px auto 34px;
  border-radius: 999px;
  background: #77777a;
}

.mobile-line {
  width: 86px;
  height: 16px;
  margin: 0 auto 14px;
}

.mobile-block {
  width: 94px;
  height: 118px;
  margin: 0 auto;
  opacity: 0.42;
}

.section {
  padding: 112px 0;
}

.section.compact {
  padding-top: 96px;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 54px;
  text-align: center;
}

.tonal {
  background: var(--panel);
}

.card-grid,
.comparison-grid,
.pricing-grid,
.example-grid {
  display: grid;
  gap: 18px;
}

.pricing-grid {
  align-items: stretch;
  padding-top: 2rem;
}

.pricing-section {
  padding-top: 2rem;
}

.optimize-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
  padding: clamp(1.35rem, 2.8vw, 2.25rem);
  border: 1px solid rgba(214, 179, 106, 0.52);
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 0%, rgba(214, 179, 106, 0.18), transparent 32%),
    radial-gradient(circle at 86% 42%, rgba(214, 179, 106, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.038);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 0 34px rgba(214, 179, 106, 0.1);
}

.optimize-copy h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
}

.optimize-copy p,
.optimize-price span {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.optimize-price {
  display: grid;
  gap: 0.75rem;
  padding-left: clamp(0rem, 3vw, 2.5rem);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.optimize-price strong {
  color: var(--paper);
  font-family: var(--font-title);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
}

.card-grid.three,
.pricing-grid,
.example-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.comparison-card,
.price-card,
.example-card,
.proposal-form,
.proposal-copy,
.privacy-panel,
.cta-panel,
.cta-row,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.card,
.comparison-card,
.price-card,
.example-card {
  padding: clamp(1.5rem, 2.4vw, 2.25rem);
}

.card h3,
.comparison-card h3,
.price-card h2,
.example-card h2 {
  font-size: clamp(1.65rem, 2.2vw, 2.35rem);
}

.card p,
.comparison-card li,
.price-card p,
.price-card li,
.example-card p {
  color: var(--muted);
}

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

.comparison-card span,
.badge {
  display: inline-flex;
  width: max-content;
  margin-bottom: 22px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--paper-2);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison-card.is-bright {
  background: rgba(255, 255, 255, 0.08);
}

.comparison-card ul,
.price-card ul,
.example-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-card li,
.price-card li,
.example-card li {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
}

.center-action {
  margin-top: 34px;
  text-align: center;
}

.final-cta {
  background: var(--black);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 5vw, 5rem);
  text-align: center;
}

.cta-panel p {
  max-width: 760px;
  margin: 20px auto 0;
}

.page-hero-grid {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 960px);
  align-items: center;
  justify-content: start;
  padding-block: 92px 110px;
}

.page-hero p:not(.eyebrow) {
  max-width: 800px;
  margin-top: 24px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 18px;
  min-height: 100%;
}

.price-card.animated-gold-border {
  overflow: visible;
}

.price-card h2 {
  margin: 0;
}

.price-card .badge,
.badge-floating {
  position: absolute;
  top: -1.25rem;
  left: 50%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin: 0;
  padding: 0.45rem 0.85rem;
  transform: translateX(-50%);
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 999px;
  background: rgba(15, 15, 15, 0.95);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.22);
  color: #f5f5f5;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-card:not(.premium-card)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.58), rgba(247, 231, 163, 0.42), transparent);
  opacity: 0.28;
}

.price-card.featured::after {
  opacity: 0.62;
}

.price-card.featured {
  border-color: rgba(212, 175, 55, 0.26);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 22px rgba(212, 175, 55, 0.08),
    var(--shadow);
}

.price-card.premium-card {
  isolation: isolate;
  border-color: rgba(214, 179, 106, 0.58);
  box-shadow:
    0 0 0 1px rgba(214, 179, 106, 0.28),
    0 0 28px rgba(214, 179, 106, 0.12),
    var(--shadow);
}

.price-card.premium-card::before,
.price-card.premium-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.price-card.premium-card::before {
  inset: 0;
  border: 1px solid rgba(248, 222, 154, 0.34);
}

.price-card.premium-card::after {
  inset: -2px;
  background:
    radial-gradient(circle at 16% 0%, rgba(248, 222, 154, 0.42), transparent 18%),
    radial-gradient(circle at 84% 100%, rgba(214, 179, 106, 0.34), transparent 20%),
    linear-gradient(115deg, transparent, rgba(214, 179, 106, 0.14), transparent);
  opacity: 0.9;
  z-index: -1;
}

.price {
  margin: 1.25rem 0;
  color: var(--text);
  font-family: var(--font-title);
  font-size: clamp(3rem, 4.4vw, 4.4rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.price-intro {
  min-height: 3.2rem;
  margin: 0;
}

.price-card ul {
  margin-top: 0.4rem;
}

.price-card .btn {
  margin-top: auto;
}

.example-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.82)),
    radial-gradient(circle at 72% 24%, rgba(214, 179, 106, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.example-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(214, 179, 106, 0.16);
  border-radius: 6px;
  pointer-events: none;
}

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

.example-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.82)),
    radial-gradient(circle at 24% 26%, rgba(214, 179, 106, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.032));
}

.example-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.82)),
    radial-gradient(circle at 64% 18%, rgba(214, 179, 106, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03));
}

.btn-view {
  width: max-content;
  max-width: 100%;
  min-height: 40px;
  margin-top: auto;
  padding-inline: 18px;
  line-height: 1.3;
  white-space: normal;
}

.examples-tabs-section {
  position: relative;
  padding-top: 2rem;
}

.examples-tabs-section .section-heading {
  margin-bottom: 1.5rem;
}

.examples-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.example-tab {
  min-height: 86px;
  padding: 1.35rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--paper);
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 600;
  line-height: 1.05;
  cursor: pointer;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.example-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 179, 106, 0.45);
  box-shadow: 0 0 24px rgba(214, 179, 106, 0.12);
}

.example-tab.is-active {
  border-color: rgba(214, 179, 106, 0.85);
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 179, 106, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    0 0 0 1px rgba(214, 179, 106, 0.25),
    0 0 32px rgba(214, 179, 106, 0.16);
}

.example-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 320px;
  margin-top: 0;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(214, 179, 106, 0.38);
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 35%, rgba(214, 179, 106, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(10, 10, 10, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 24px 70px rgba(0, 0, 0, 0.35);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.example-panel.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.example-category {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 1.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(214, 179, 106, 0.12);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.example-panel h3 {
  max-width: 760px;
  margin: 0;
  color: var(--paper);
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
}

.example-panel h3::after {
  content: "";
  display: block;
  width: 140px;
  height: 1px;
  margin: 1.4rem 0 1.6rem;
  background: linear-gradient(90deg, var(--gold), transparent);
  box-shadow: 0 0 14px rgba(214, 179, 106, 0.5);
}

.example-panel p:not(.example-category) {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.65;
}

.example-link {
  margin-top: 1.8rem;
}

.note {
  max-width: 780px;
  margin: 28px auto 0;
  text-align: center;
}

.category-strip {
  max-width: 900px;
  text-align: center;
}

.category-strip h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.category-strip p {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--muted);
}

.category-line {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(214, 179, 106, 0.22);
  color: var(--paper-2);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
}

.cta-row p {
  max-width: 720px;
}

.proposal-layout {
  position: relative;
  max-width: 920px;
}

.proposal-gold-accent {
  width: min(420px, 72%);
  margin: 0 0 18px auto;
  opacity: 0.85;
}

.form-gold-border::before {
  opacity: 0.52;
}

.proposal-copy,
.proposal-form {
  padding: 28px;
}

.contact-panel {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 18px;
  color: var(--muted);
}

.contact-panel p {
  margin: 0;
  color: var(--text);
  font-family: var(--font-title);
  font-size: 1.55rem;
}

.contact-panel a:hover,
.contact-panel a:focus-visible,
.footer a:hover,
.footer a:focus-visible {
  color: var(--text);
}

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

.span-2 {
  grid-column: 1 / -1;
}

.proposal-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proposal-form input,
.proposal-form select,
.proposal-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}

.proposal-form select {
  color-scheme: dark;
}

.proposal-form select option {
  background: #f5f5f3;
  color: #050505;
}

.proposal-form select option:checked {
  background: #d8d8d6;
  color: #050505;
}

.proposal-form textarea {
  resize: vertical;
}

.proposal-form input:focus,
.proposal-form select:focus,
.proposal-form textarea:focus {
  border-color: var(--paper-2);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.09);
}

.proposal-form input::placeholder {
  color: var(--soft);
}

.proposal-form .privacy-check {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.proposal-form .privacy-check a {
  color: var(--gold);
  text-decoration: none;
}

.proposal-form .privacy-check a:hover,
.proposal-form .privacy-check a:focus-visible {
  text-decoration: underline;
}

.proposal-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--paper-2);
  font-weight: 850;
}

.privacy-section {
  padding-top: 72px;
}

.privacy-panel {
  padding: 38px;
}

.privacy-panel h1 {
  max-width: 900px;
  margin: 0 0 18px;
  font-size: clamp(2.45rem, 5vw, 4.8rem);
}

.privacy-panel h2,
.privacy-panel p {
  max-width: 880px;
}

.faq-section {
  padding-top: clamp(4rem, 7vw, 7rem);
}

.faq-shell {
  max-width: 980px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background:
    radial-gradient(circle at 92% 0%, rgba(214, 179, 106, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.035);
  overflow: hidden;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.faq-item[open] {
  border-color: rgba(214, 179, 106, 0.42);
  background:
    radial-gradient(circle at 88% 0%, rgba(214, 179, 106, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 28px rgba(214, 179, 106, 0.08);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem clamp(1rem, 2.4vw, 1.65rem);
  color: var(--paper);
  font-weight: 850;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(214, 179, 106, 0.36);
  border-radius: 999px;
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-answer {
  padding: 0 clamp(1rem, 2.4vw, 1.65rem) 1.35rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.faq-answer p {
  max-width: 840px;
  margin: 0;
}

.faq-item[open] .faq-answer {
  animation: faqAnswerIn 220ms ease;
}

.faq-cta {
  margin-top: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

@keyframes faqAnswerIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

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

.footer {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding: 50px 0 28px;
  border-top: 1px solid var(--line-soft);
  background: var(--black);
}

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(340px, 0.9fr) minmax(170px, auto);
  gap: 34px;
  align-items: start;
  min-height: auto;
  margin-bottom: 16px;
}

.footer-brand {
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
}

.footer-wind {
  display: none;
  position: absolute;
  left: 0;
  right: auto;
  top: 112px;
  z-index: 1;
  width: min(520px, 40vw);
  height: clamp(140px, 12vw, 168px);
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  pointer-events: none;
  opacity: 0;
}

.footer-wind img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  filter: saturate(1.06) contrast(1.04) brightness(0.92);
  transform: translate3d(0, 0, 0) scale(1.01);
  transform-origin: left center;
  animation: footerWindFloat 18s ease-in-out infinite;
}

.footer-wind::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, transparent 0%, transparent 34%, rgba(133, 89, 18, 0.06) 42%, rgba(245, 215, 138, 0.2) 50%, rgba(205, 150, 47, 0.1) 58%, transparent 74%, transparent 100%),
    linear-gradient(92deg, transparent 12%, rgba(245, 215, 138, 0.08) 52%, transparent 76%);
  mix-blend-mode: screen;
  opacity: 0.2;
  transform: translate3d(-12%, 0, 0) skewX(-10deg);
  animation: footerWindShine 9.6s ease-in-out infinite;
}

.footer-wind::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, var(--black) 0%, rgba(5, 5, 5, 0.08) 10%, rgba(5, 5, 5, 0) 22%, rgba(5, 5, 5, 0.18) 72%, var(--black) 100%),
    linear-gradient(180deg, var(--black) 0%, rgba(5, 5, 5, 0.16) 24%, rgba(5, 5, 5, 0) 56%, var(--black) 100%);
  animation: footerWindBreath 11s ease-in-out infinite;
}

.footer p,
.footer-contact,
.footer nav,
.footer-bottom {
  position: relative;
  z-index: 2;
  color: var(--muted);
}

.footer-contact,
.footer nav {
  display: grid;
  gap: 12px;
}

.footer-contact {
  justify-self: center;
}

.footer-contact a,
.footer-contact span {
  display: inline;
  white-space: normal;
}

.footer-contact a::before,
.footer-contact span::before {
  content: none;
}

.footer nav {
  justify-self: end;
  justify-items: end;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer .footer-legal {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem 1rem;
  width: min(calc(100% - 40px), var(--wrap));
  margin: 8px auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.footer .footer-legal a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer .footer-legal a:hover,
.footer .footer-legal a:focus-visible {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}

@keyframes goldDividerReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 4px, 0) scaleX(0.88);
  }

  to {
    opacity: 0.82;
    transform: translate3d(0, 0, 0) scaleX(1);
  }
}

@keyframes goldWindCore {
  0% {
    opacity: 0;
    transform: translate3d(-8%, -50%, 0) rotate(var(--divider-angle)) skewX(-10deg) scaleX(0.72);
  }

  14% {
    opacity: var(--divider-opacity-strong);
  }

  48% {
    transform: translate3d(3%, calc(-50% - 2px), 0) rotate(var(--divider-angle-mid)) skewX(-6deg) scaleX(0.98);
  }

  82% {
    opacity: var(--divider-opacity-soft);
  }

  100% {
    opacity: 0;
    transform: translate3d(18%, calc(-50% + 2px), 0) rotate(var(--divider-angle-end)) skewX(-8deg) scaleX(1.02);
  }
}

@keyframes goldWindLayer {
  0% {
    opacity: 0;
    transform: translate3d(-10%, -2px, 0) scaleX(0.62) skewX(-14deg);
  }

  16%,
  76% {
    opacity: 0.54;
  }

  52% {
    transform: translate3d(12%, 2px, 0) scaleX(0.96) skewX(-10deg);
  }

  100% {
    opacity: 0;
    transform: translate3d(28%, -1px, 0) scaleX(1.04) skewX(-9deg);
  }
}

@keyframes goldWindLayerReverse {
  0% {
    opacity: 0;
    transform: translate3d(16%, 2px, 0) scaleX(0.76) skewX(14deg);
  }

  18%,
  72% {
    opacity: 0.48;
  }

  50% {
    transform: translate3d(-5%, -2px, 0) scaleX(0.96) skewX(9deg);
  }

  100% {
    opacity: 0;
    transform: translate3d(-22%, 1px, 0) scaleX(0.86) skewX(10deg);
  }
}

@keyframes goldMetalReflection {
  0%,
  16% {
    left: -34%;
    opacity: 0;
  }

  34% {
    opacity: 0.92;
  }

  58% {
    opacity: 0.42;
  }

  78%,
  100% {
    left: 110%;
    opacity: 0;
  }
}

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

  50% {
    opacity: 0.56;
    transform: scale(1.035);
  }
}

@keyframes heroGoldStream {
  0%,
  100% {
    opacity: 0.24;
    transform: translate3d(-2%, 2px, 0) skewX(-16deg) rotate(-7deg) scaleX(0.92);
  }

  50% {
    opacity: 0.42;
    transform: translate3d(4%, -6px, 0) skewX(-11deg) rotate(-5deg) scaleX(1.04);
  }
}

@keyframes footerWindFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1.02);
    filter: saturate(1.04) contrast(1.03) brightness(0.9);
  }

  46% {
    transform: translate3d(1.2%, -3px, 0) scale(1.025);
    filter: saturate(1.08) contrast(1.05) brightness(0.98);
  }
}

@keyframes footerWindShine {
  0%,
  18% {
    opacity: 0;
    transform: translate3d(-28%, 4px, 0) skewX(-12deg);
  }

  44% {
    opacity: 0.38;
  }

  76%,
  100% {
    opacity: 0;
    transform: translate3d(34%, -4px, 0) skewX(-8deg);
  }
}

@keyframes footerWindBreath {
  0%,
  100% {
    opacity: 0.94;
  }

  50% {
    opacity: 0.82;
  }
}

@keyframes goldShine {
  0% {
    left: -42%;
    opacity: 0;
  }

  15%,
  85% {
    opacity: 0.58;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes goldBorderMove {
  0%,
  100% {
    background-position: 0% 50%;
    opacity: 0.34;
  }

  50% {
    background-position: 100% 50%;
    opacity: 0.72;
  }
}

@keyframes slowGoldFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-11deg);
    opacity: 0.14;
  }

  50% {
    transform: translateY(-8px) rotate(-7deg);
    opacity: 0.24;
  }
}

@keyframes heroGoldDrift {
  0%,
  100% {
    background-position: center, center, right 28px center;
  }

  50% {
    background-position: center, center, right 10px center;
  }
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

.js .gold-divider {
  opacity: 0;
  transform: translate3d(0, 4px, 0) scaleX(0.88);
  transform-origin: center;
  transition: opacity 520ms ease, transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .gold-divider.is-visible {
  opacity: 0.82;
  transform: translate3d(0, 0, 0) scaleX(1);
}

.js .gold-divider:not(.is-visible)::before,
.js .gold-divider:not(.is-visible)::after,
.js .gold-divider:not(.is-visible) .gold-line,
.js .gold-divider:not(.is-visible) .gold-line::before,
.js .gold-divider:not(.is-visible) .gold-line::after {
  animation-play-state: paused;
  opacity: 0;
}

@media (max-width: 1120px) {
  .hero-grid,
  .proposal-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-visual {
    width: min(100%, 560px);
    min-height: 430px;
    justify-self: center;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 3.45rem;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 7vw, 5rem);
  }

  .page-hero h1 {
    font-size: clamp(3.25rem, 7vw, 4.8rem);
  }

  .section-heading h1,
  .section-heading h2,
  .proposal-copy h2,
  .cta-panel h2,
  .cta-row h2,
  .privacy-panel h2 {
    font-size: 2.85rem;
  }

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

  .optimize-card {
    grid-template-columns: 1fr;
  }

  .optimize-price {
    padding-left: 0;
    padding-top: 1.25rem;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .price-intro {
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }

  .footer-contact {
    justify-self: start;
  }

  .footer nav {
    justify-self: start;
    justify-items: start;
  }
}

@media (max-width: 900px) {
  .hero::before,
  .page-hero::before {
    background-size: cover;
    background-position: center;
    opacity: 0.52;
  }

  .page-hero::before {
    background-size: cover;
    background-position: center;
    opacity: 0.52;
  }

  .gold-divider {
    width: min(860px, calc(100% - 28px));
    height: 34px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 72px 0 auto 0;
    display: grid;
    gap: 8px;
    padding: 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 12px 0;
  }

  .language-switcher {
    justify-self: start;
    margin-top: 4px;
  }

  .card-grid.three,
  .comparison-grid,
  .page-hero-grid,
  .cta-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero::before,
  .page-hero::before {
    background-size: cover;
    background-position: center;
    opacity: 0.3;
  }

  .page-hero::before {
    background-size: cover;
    background-position: center;
    opacity: 0.26;
  }

  .gold-divider {
    width: min(520px, calc(100% - 28px));
    height: 30px;
    --divider-opacity: 0.68;
    --divider-speed: 8.4s;
    --divider-speed-layer: 9s;
    --divider-speed-alt: 9.6s;
    --divider-speed-reverse: 10.4s;
  }

  .gold-divider::after,
  .gold-line::before {
    opacity: 0.22;
  }

  .gold-line {
    height: 8px;
    background:
      linear-gradient(90deg, transparent 0%, rgba(133, 89, 18, 0.12) 18%, rgba(205, 150, 47, 0.44) 38%, rgba(245, 215, 138, 0.62) 52%, rgba(205, 150, 47, 0.38) 68%, transparent 100%) center 4px / 100% 1px no-repeat,
      linear-gradient(92deg, transparent 0%, rgba(255, 238, 166, 0.22) 48%, transparent 88%) 18% 2px / 58% 1px no-repeat;
  }

  .wrap {
    width: min(calc(100% - 28px), var(--wrap));
  }

  .brand {
    max-width: 70vw;
  }

  .hero-grid {
    padding-block: 70px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.45rem;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .page-hero h1 {
    font-size: 2.65rem;
  }

  .section-heading h1,
  .section-heading h2,
  .proposal-copy h2,
  .cta-panel h2,
  .cta-row h2,
  .privacy-panel h2 {
    font-size: 2.05rem;
  }

  .lead,
  .hero .support,
  .page-hero p,
  .section-heading p,
  .cta-panel p,
  .cta-row p,
  .proposal-copy p,
  .privacy-panel p,
  .note {
    font-size: 0.98rem;
  }

  .hero .support {
    display: none;
  }

  .hero-visual {
    display: none;
  }

  .actions,
  .actions .btn,
  .form-actions,
  .form-actions .btn {
    width: 100%;
  }

  .section {
    padding: 66px 0;
  }

  .pricing-grid {
    padding-top: 1.5rem;
    gap: 2.5rem;
  }

  .price-card .badge,
  .badge-floating {
    top: -1rem;
    font-size: 0.62rem;
  }

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

  .examples-tabs {
    grid-template-columns: 1fr;
  }

  .example-tab {
    min-height: 72px;
    text-align: left;
  }

  .example-panel {
    min-height: 280px;
  }

  .example-card {
    min-height: 340px;
  }

  .page-hero-grid {
    min-height: auto;
    padding-block: 70px;
  }

  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    min-height: auto;
    padding: 48px 0 28px;
  }

  .footer-grid {
    gap: 24px;
    min-height: auto;
  }

  .footer-contact {
    gap: 12px;
  }

  .footer nav {
    font-size: 0.88rem;
  }

  .footer .footer-legal {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.5rem;
    width: min(calc(100% - 28px), var(--wrap));
    font-size: 0.84rem;
  }

  .card,
  .comparison-card,
  .price-card,
  .proposal-form,
  .proposal-copy,
  .privacy-panel {
    padding: 22px;
  }

  .cta-panel,
  .cta-row {
    padding: 28px 20px;
  }

  .price {
    font-size: 2.45rem;
  }
}

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

  .gold-line::before,
  .gold-line::after,
  .gold-divider::before,
  .gold-divider::after,
  .animated-gold-border::before,
  .gold-glow::before,
  .gold-glow::after,
  .footer-wind,
  .footer-wind img,
  .footer-wind::before,
  .footer-wind::after,
  .hero::before,
  .page-hero::before {
    animation: none !important;
  }

  .js .gold-divider,
  .js .gold-divider.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .gold-divider {
    height: 28px;
  }

  .gold-divider::before,
  .gold-divider::after,
  .gold-line::before,
  .gold-line::after,
  .gold-glow::after,
  .footer-wind::before {
    display: none;
  }

  .gold-line {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    opacity: 0.7;
    transform: none;
    background: linear-gradient(90deg, transparent 0%, rgba(133, 89, 18, 0.15) 12%, rgba(205, 150, 47, 0.56) 34%, rgba(245, 215, 138, 0.72) 50%, rgba(205, 150, 47, 0.52) 68%, transparent 100%);
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.18));
  }

  .gold-glow::before {
    opacity: 0.26;
    transform: none;
  }

  .footer-wind img {
    transform: translate3d(0, 0, 0) scale(1.025);
  }
}
