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

:root {
  --ink: #060606;
  --ink-2: #0f0f0f;
  --ink-3: #161616;
  --ink-4: #1d1d1d;
  --gold: #c9a96e;
  --gold-light: #dfc090;
  --gold-dim: rgba(201, 169, 110, 0.12);
  --gold-border: rgba(201, 169, 110, 0.22);
  --white: #f2f0eb;
  --muted: rgba(242, 240, 235, 0.42);
  --muted-2: rgba(242, 240, 235, 0.18);
  --border: rgba(255, 255, 255, 0.06);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

@media (hover: none) {
  body { cursor: auto; }
  .cursor { display: none; }
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), opacity 0.3s;
  mix-blend-mode: difference;
}

.cursor.hovering {
  width: 36px;
  height: 36px;
  opacity: 0.6;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-head {
  margin-bottom: 64px;
}

.section-head .section-title {
  margin-bottom: 0;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: hidden;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 17px 38px;
  border: none;
  cursor: none;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(201, 169, 110, 0.35), 0 4px 16px rgba(201, 169, 110, 0.2);
}

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

.btn-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.55s var(--ease-out);
}

.btn-gold:hover .btn-shine {
  transform: translateX(100%);
}

.btn-gold-lg {
  font-size: 14px;
  padding: 20px 52px;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  border-bottom: 1px solid var(--muted-2);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
  cursor: none;
}

.btn-text span {
  transition: transform 0.3s var(--ease-out);
  display: inline-block;
}

.btn-text:hover {
  color: var(--white);
  border-color: rgba(242,240,235,0.4);
}

.btn-text:hover span {
  transform: translateY(3px);
}

.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 22px 0;
  transition: padding 0.4s var(--ease-out), background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.stuck {
  background: rgba(6, 6, 6, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 0;
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  cursor: none;
  flex-shrink: 0;
}

.logo-dot {
  color: var(--gold);
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-pill {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 7px 16px;
  white-space: nowrap;
}

.nav-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 11px 26px;
  transition: background 0.3s, color 0.3s;
  cursor: none;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 160px 40px 100px;
  overflow: hidden;
  text-align: center;
}

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

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ambient-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 65%);
  top: -200px;
  right: -150px;
  filter: blur(60px);
  animation: drift1 14s ease-in-out infinite;
}

.ambient-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 65%);
  bottom: -100px;
  left: -100px;
  filter: blur(80px);
  animation: drift2 18s ease-in-out infinite;
}

.ambient-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,169,110,0.05) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(100px);
  animation: drift3 22s ease-in-out infinite;
}

@keyframes drift1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(1.06); }
  66% { transform: translate(20px, -20px) scale(0.96); }
}

@keyframes drift2 {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(30px, -25px) scale(1.1); }
}

@keyframes drift3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.15); }
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
}

.eyebrow-line {
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
  opacity: 0.5;
}

.eyebrow-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-target {
  font-size: 16px;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.03em;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: inline-block;
  padding: 9px 22px;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 50px;
  letter-spacing: 0.01em;
}

.hero-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.hero-metrics {
  display: inline-flex;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
  backdrop-filter: blur(10px);
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 44px;
  gap: 5px;
}

.metric-val {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
}

.metric-lbl {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.metric-sep {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 10px 0;
}

.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: pulse-scroll 2.2s ease-in-out infinite;
}

@keyframes pulse-scroll {
  0%, 100% { opacity: 0.35; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.9; }
}

.marquee-strip {
  background: var(--ink-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee-track .sep {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0;
}

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

.work {
  padding: 130px 0;
}

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

.work-card {
  cursor: none;
}

.work-card-frame {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.4s var(--ease-out);
}

.work-card:hover .work-card-frame {
  border-color: var(--gold-border);
}

.work-card-browser {
  background: var(--ink-3);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--ink-4);
  border-bottom: 1px solid var(--border);
}

.browser-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted-2);
}

.browser-dots span:nth-child(1) { background: rgba(255, 95, 87, 0.5); }
.browser-dots span:nth-child(2) { background: rgba(255, 188, 46, 0.5); }
.browser-dots span:nth-child(3) { background: rgba(40, 200, 64, 0.5); }

.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border-radius: 3px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.02em;
  text-align: center;
}

.mock-screen {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.mock-barber {
  background: #0a0a0a;
}

.mock-salon {
  background: #f8f5f0;
}

.mock-business {
  background: #111318;
}

.ms-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.light-nav {
  border-bottom-color: rgba(0,0,0,0.08);
}

.ms-logo {
  width: 36px;
  height: 8px;
  background: var(--gold);
  opacity: 0.7;
  border-radius: 1px;
}

.light-logo {
  background: #2a2a2a;
}

.mid-logo {
  background: #4a90d9;
  opacity: 0.7;
}

.ms-links {
  display: flex;
  gap: 8px;
}

.ms-links span {
  width: 24px;
  height: 5px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}

.light-links span {
  background: rgba(0,0,0,0.15);
}

.ms-hero-area {
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.dark-hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1510 100%);
}

.ms-big-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 8px;
}

.ms-line {
  height: 7px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
}

.gold-line { background: var(--gold); opacity: 0.6; }
.dark-line { background: rgba(0,0,0,0.18); }
.white-line { background: rgba(255,255,255,0.15); }

.w80 { width: 80%; }
.w70 { width: 70%; }
.w65 { width: 65%; }
.w55 { width: 55%; }
.w50 { width: 50%; }
.w45 { width: 45%; }

.ms-btn {
  width: 52px;
  height: 14px;
  background: var(--gold);
  opacity: 0.7;
  border-radius: 2px;
  margin-top: 6px;
}

.pink-btn {
  background: #e8a0a0;
}

.ms-btn-outline {
  width: 52px;
  height: 14px;
  border: 1px solid var(--gold);
  opacity: 0.5;
  border-radius: 2px;
}

.ms-btn-ghost-sm {
  width: 36px;
  height: 14px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}

.barber-img {
  width: 80px;
  height: 90px;
  background: linear-gradient(160deg, #2a2218 0%, #1a1510 100%);
  border: 1px solid rgba(201,169,110,0.15);
  flex-shrink: 0;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.barber-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 52px;
  background: linear-gradient(to bottom, #3a2f20, #2a2018);
  border-radius: 50% 50% 0 0;
}

.nail-img {
  background: linear-gradient(160deg, #f5e6e8 0%, #ead5d8 100%);
  flex-shrink: 0;
  border-radius: 2px;
}

.ms-services-row {
  display: flex;
  gap: 6px;
  padding: 8px 16px 10px;
}

.ms-service-card {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ms-svc-icon {
  width: 16px;
  height: 16px;
  background: var(--gold);
  opacity: 0.3;
  border-radius: 50%;
}

.ms-svc-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ms-svc-text span {
  display: block;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}

.ms-svc-text span:last-child { width: 60%; }

.ms-split-hero {
  display: flex;
  align-items: stretch;
  height: 130px;
}

.ms-split-left {
  flex: 1;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  justify-content: center;
}

.ms-tag-pill {
  width: 48px;
  height: 8px;
  background: #e8a0a0;
  opacity: 0.5;
  border-radius: 10px;
}

.ms-split-right {
  width: 90px;
  background: linear-gradient(160deg, #f0dde0 0%, #e5c8cc 100%);
}

.center-line {
  margin: 0 auto;
}

.ms-booking-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(0,0,0,0.06);
  border-top: 1px solid rgba(0,0,0,0.07);
}

.ms-book-item {
  flex: 1;
  height: 20px;
  background: rgba(0,0,0,0.07);
  border-radius: 2px;
}

.ms-book-cta {
  width: 44px;
  height: 20px;
  background: #c97070;
  opacity: 0.6;
  border-radius: 2px;
  flex-shrink: 0;
}

.ms-centered-hero {
  padding: 18px 16px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.ms-eyebrow-bar {
  width: 40px;
  height: 3px;
  background: var(--gold);
  opacity: 0.5;
  border-radius: 2px;
}

.ms-hero-ctas {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.ms-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 6px 16px 10px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.ms-stat-item {
  flex: 1;
  height: 24px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
}

.ms-stat-div {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.08);
  margin: 0 6px;
}

.work-card-hover {
  position: absolute;
  inset: 0;
  background: rgba(6,6,6,0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  z-index: 2;
}

.work-card:hover .work-card-hover {
  opacity: 1;
}

.work-tag-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 7px 16px;
}

.work-arrow {
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
  color: var(--white);
}

.work-card-info h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}

.work-card-info p {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}

.offer {
  padding: 130px 0;
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.offer-wrap {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 100px;
  align-items: start;
}

.offer-price-block {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  margin-bottom: 32px;
}

.offer-price-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.price-big {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-label {
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
}

.price-sub {
  font-size: 12px;
  color: var(--muted);
}

.urgency-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
  background: rgba(201,169,110,0.07);
  border: 1px solid var(--gold-border);
  padding: 11px 18px;
  margin-bottom: 32px;
}

.urgency-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.offer-list {
  list-style: none;
}

.offer-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.offer-item:first-child {
  border-top: 1px solid var(--border);
}

.offer-icon {
  color: var(--gold);
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
}

.offer-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-text strong {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--white);
}

.offer-text span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.55;
}

.trust {
  padding: 130px 0;
}

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

.trust-card {
  padding: 52px 44px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease-out);
}

.trust-card:last-child {
  border-right: none;
}

.trust-card:hover {
  background: rgba(201,169,110,0.025);
}

.trust-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  color: rgba(201,169,110,0.14);
  line-height: 1;
  margin-bottom: 28px;
}

.trust-icon-wrap {
  color: var(--gold);
  margin-bottom: 20px;
}

.trust-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.trust-card p {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

.trust-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transition: width 0.7s var(--ease-out);
}

.trust-card:hover .trust-bar {
  width: 100%;
}

.cta-band {
  padding: 150px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--ink-2);
}

.cta-band-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
}

.cta-band-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 1.8s ease-in-out infinite;
}

.cta-band-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.cta-band-sub {
  font-size: 17px;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 52px;
  letter-spacing: 0.01em;
}

.contact {
  padding: 130px 0;
  background: var(--ink-3);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: start;
}

.contact-left {
  padding-top: 8px;
}

.contact-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-top: -14px;
  margin-bottom: 40px;
  font-weight: 300;
}

.contact-promises {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.promise-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 300;
  color: var(--white);
}

.promise-check {
  color: var(--gold);
  font-size: 16px;
  font-weight: 500;
}

.contact-urgency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--gold-light);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 10px 16px;
}

.contact-urgency strong { font-weight: 600; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-field label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.req {
  color: var(--gold);
}

.form-field input {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  padding: 16px 20px;
  outline: none;
  transition: border-color 0.3s var(--ease-out), background 0.3s;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-field input::placeholder {
  color: rgba(242,240,235,0.18);
}

.form-field input:focus {
  border-color: rgba(201,169,110,0.45);
  background: rgba(201,169,110,0.03);
}

.btn-form {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 20px;
  margin-top: 4px;
  cursor: none;
  border: none;
}

.form-note {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  font-weight: 300;
}

.form-success {
  display: none;
  text-align: center;
  padding: 72px 40px;
  border: 1px solid var(--gold-border);
  background: var(--gold-dim);
}

.form-success.visible {
  display: block;
}

.success-ring {
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 28px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.form-success p {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

.footer {
  padding: 36px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
}

.footer-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity 0.3s;
  cursor: none;
}

.footer-cta:hover {
  opacity: 0.65;
}

@media (max-width: 1100px) {
  .offer-wrap {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .trust-card:last-child {
    border-bottom: none;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .nav-center { display: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }

  .hero { padding: 140px 24px 90px; }
  .hero-metrics {
    flex-direction: column;
    width: 100%;
    max-width: 260px;
  }
  .metric { padding: 16px 36px; width: 100%; }
  .metric-sep { width: 100%; height: 1px; margin: 0 10px; }
  .hero-cta-wrap { flex-direction: column; gap: 20px; }

  .work { padding: 80px 0; }
  .offer { padding: 80px 0; }
  .trust { padding: 80px 0; }
  .trust-card { padding: 40px 28px; }
  .cta-band { padding: 100px 0; }
  .contact { padding: 80px 0; }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .offer-price-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .nav-cta { padding: 9px 18px; font-size: 11px; }
}
