:root {
  --ink: #08090b;
  --coal: #101318;
  --panel: #171b22;
  --line: rgba(255, 255, 255, 0.14);
  --muted: #a9b0bb;
  --text: #f8f4ec;
  --gold: #d8a844;
  --gold-light: #ffe19b;
  --teal: #42d6c6;
  --coral: #ff6b5f;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  background: rgba(8, 9, 11, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 9, 11, 0.9);
  padding-block: 12px;
}

.brand,
.site-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img,
.site-footer img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(216, 168, 68, 0.65);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: #d7dbe1;
  font-size: 0.94rem;
}

nav a {
  transition: color 180ms ease;
}

nav a:hover {
  color: var(--gold-light);
}

.header-cta {
  justify-self: end;
  border: 1px solid rgba(255, 225, 155, 0.55);
  border-radius: 999px;
  padding: 11px 18px;
  color: var(--gold-light);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: min(820px, 92svh);
  overflow: hidden;
  padding: 94px clamp(20px, 6vw, 80px) 54px;
  background:
    radial-gradient(circle at 74% 35%, rgba(216, 168, 68, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(8, 9, 11, 0.96), rgba(17, 19, 24, 0.82) 48%, rgba(8, 9, 11, 0.98));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(transparent, var(--ink));
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.62;
}

.proof-phone {
  position: absolute;
  width: clamp(180px, 22vw, 310px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  filter: saturate(0.92) contrast(1.08);
}

.phone-one {
  right: 8vw;
  top: 88px;
  transform: rotate(6deg);
}

.phone-two {
  right: 27vw;
  top: 190px;
  transform: rotate(-8deg);
}

.phone-three {
  right: -2vw;
  bottom: -120px;
  transform: rotate(10deg);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 910px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  justify-items: center;
}

.hero-content {
  max-width: 780px;
  justify-self: start;
}

.eyebrow,
.section-kicker {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.9rem, 7.4vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 22px;
  color: #e7eaf0;
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  line-height: 1.12;
}

.hero-offer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 24px;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
}

.hero-offer strong {
  color: var(--gold-light);
}

.hero-offer span {
  color: #d9dde5;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 14px 22px;
  border: 0;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #11100c;
  box-shadow: 0 18px 36px rgba(216, 168, 68, 0.26);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  gap: 12px;
  margin: 0;
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.hero-stats dt {
  color: var(--gold-light);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 950;
  line-height: 1;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-form {
  position: relative;
  z-index: 3;
  width: min(420px, 100%);
  justify-self: center;
  align-self: center;
  background: rgba(14, 17, 23, 0.84);
  backdrop-filter: blur(16px);
}

.form-heading {
  display: grid;
  gap: 4px;
  padding-bottom: 4px;
}

.form-heading span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading strong {
  color: #fff7e5;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.trust-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 16px clamp(20px, 6vw, 80px) 22px;
  border-block: 1px solid var(--line);
  background: #0d1014;
  scrollbar-width: none;
}

.trust-strip::-webkit-scrollbar {
  display: none;
}

.trust-strip span {
  flex: 0 0 auto;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #dfe4eb;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.92rem;
}

.section,
.creative-showcase,
.about-section,
.guarantee-section,
.booking-section {
  padding: clamp(68px, 9vw, 118px) clamp(20px, 6vw, 80px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 7vw, 88px);
  align-items: end;
  margin-bottom: 42px;
}

.section-heading.compact {
  display: block;
  max-width: 780px;
}

.section-heading h2,
.guarantee-copy h2,
.booking-content h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.section-heading p:not(.section-kicker),
.creative-copy p,
.video-proof-copy p,
.guarantee-copy p,
.booking-content p {
  color: var(--muted);
  font-size: 1.05rem;
}

.video-proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(420px, 1fr);
  gap: clamp(28px, 7vw, 88px);
  align-items: center;
  padding: clamp(68px, 9vw, 118px) clamp(20px, 6vw, 80px);
  background:
    radial-gradient(circle at 76% 42%, rgba(216, 168, 68, 0.18), transparent 32%),
    linear-gradient(180deg, #0d1014, #08090b);
}

.video-proof-copy {
  max-width: 660px;
}

.video-proof-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 5.8vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.video-proof-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.video-proof-badges span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 225, 155, 0.3);
  background: rgba(216, 168, 68, 0.09);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 900;
}

.proof-video-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    #0c1016;
  background-size: 44px 44px;
  box-shadow: var(--shadow);
}

.proof-video-phone {
  position: absolute;
  left: 10%;
  top: 50%;
  width: min(250px, 40%);
  aspect-ratio: 0.46;
  overflow: hidden;
  border: 8px solid #050608;
  border-radius: 34px;
  transform: translateY(-50%) rotate(-4deg);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
  background: #050608;
  animation: proofPhoneFloat 6s ease-in-out infinite;
}

.proof-video-phone video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.calendar-pop {
  position: absolute;
  right: 7%;
  top: 21%;
  width: min(310px, 48%);
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(66, 214, 198, 0.28);
  background: rgba(8, 9, 11, 0.82);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
  animation: calendarFill 6s ease-in-out infinite;
}

.calendar-pop > span {
  display: block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.calendar-pop div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  margin-top: 10px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.calendar-pop i {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 18px rgba(255, 225, 155, 0.62);
}

.calendar-pop strong {
  color: #f4f7fb;
}

.lead-burst {
  position: absolute;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #f4f7fb;
  font-size: 0.82rem;
  font-weight: 900;
  animation: leadBurst 6s ease-in-out infinite;
}

.lead-burst-one {
  left: 8%;
  top: 12%;
}

.lead-burst-two {
  right: 11%;
  bottom: 18%;
  animation-delay: 0.9s;
}

.lead-burst-three {
  left: 18%;
  bottom: 10%;
  animation-delay: 1.8s;
}

@keyframes proofPhoneFloat {
  0%, 100% {
    transform: translateY(-50%) rotate(-4deg);
  }
  50% {
    transform: translateY(-54%) rotate(-1deg);
  }
}

@keyframes calendarFill {
  0%, 100% {
    transform: translateY(8px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes leadBurst {
  0%, 100% {
    opacity: 0.35;
    transform: translateY(12px) scale(0.96);
  }
  35%, 72% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.creative-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(420px, 1fr);
  gap: clamp(28px, 7vw, 88px);
  align-items: center;
  background:
    radial-gradient(circle at 78% 48%, rgba(66, 214, 198, 0.14), transparent 32%),
    radial-gradient(circle at 42% 18%, rgba(216, 168, 68, 0.14), transparent 28%),
    linear-gradient(180deg, #08090b, #0f1217);
}

.creative-copy {
  max-width: 650px;
  min-width: 0;
}

.creative-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.motion-stage {
  position: relative;
  overflow: hidden;
  min-width: 0;
  aspect-ratio: 1.55;
  min-height: 330px;
  padding-top: 58px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    #0c1016;
  box-shadow: var(--shadow);
}

.motion-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  pointer-events: none;
}

.motion-stage canvas {
  position: absolute;
  inset: 58px 0 0;
  width: 100%;
  height: calc(100% - 58px);
}

.motion-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  pointer-events: none;
}

.motion-overlay span,
.motion-overlay strong {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 999px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(8, 9, 11, 0.72);
  color: #dfe4eb;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: blur(12px);
}

.motion-overlay strong {
  color: var(--gold-light);
  border-color: rgba(255, 225, 155, 0.34);
}

.proof-section {
  background: #0b0d10;
}

.journey-section {
  padding: clamp(68px, 9vw, 118px) clamp(20px, 6vw, 80px);
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 107, 95, 0.12), transparent 28%),
    linear-gradient(180deg, #0f1217, #090a0d);
}

.journey-animation {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  gap: 18px;
  min-height: 520px;
}

.client-scene,
.office-scene {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #0c1016;
  box-shadow: var(--shadow);
}

.client-scene::before,
.office-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
  pointer-events: none;
}

.phone-scene {
  position: absolute;
  left: clamp(24px, 4vw, 46px);
  bottom: 48px;
  width: min(250px, 38%);
  transform-origin: 50% 100%;
  animation: phoneLift 8s ease-in-out infinite;
}

.phone-frame {
  position: relative;
  z-index: 2;
  min-height: 410px;
  border-radius: 34px;
  border: 8px solid #050608;
  background: linear-gradient(180deg, #111821, #07090d);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.48);
}

.phone-speaker {
  width: 74px;
  height: 8px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.lead-feed {
  position: absolute;
  inset: 54px 16px 18px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.lead-alert {
  min-height: 64px;
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.095);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #eef3f8;
  font-size: 0.92rem;
  font-weight: 850;
  opacity: 0;
  transform: translateX(-28px);
  animation: leadSlide 8s ease-in-out infinite;
}

.lead-alert::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 16px rgba(66, 214, 198, 0.7);
}

.lead-alert-two {
  animation-delay: 1.25s;
}

.lead-alert-three {
  animation-delay: 2.5s;
}

.hand-base {
  width: 76%;
  height: 40px;
  margin: -8px auto 0;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(135deg, rgba(216, 168, 68, 0.42), rgba(255, 225, 155, 0.22));
  filter: blur(0.2px);
}

.journey-stages {
  position: absolute;
  right: clamp(22px, 4vw, 42px);
  top: 50%;
  width: min(300px, 38%);
  transform: translateY(-50%);
  display: grid;
  gap: 14px;
}

.journey-stages div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(8, 9, 11, 0.72);
  animation: stagePulse 8s ease-in-out infinite;
}

.journey-stages div:nth-child(2) {
  animation-delay: 1.25s;
}

.journey-stages div:nth-child(3) {
  animation-delay: 2.5s;
}

.journey-stages span {
  color: var(--gold-light);
  font-weight: 950;
}

.journey-stages strong {
  color: #f4f7fb;
  font-size: 1.04rem;
}

.office-scene {
  padding: 22px;
}

.office-header,
.office-metrics {
  position: relative;
  z-index: 2;
}

.office-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 46px;
}

.office-header span,
.office-metrics span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.office-header strong {
  color: var(--gold-light);
}

.desk-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: end;
  margin-bottom: 42px;
}

.operator {
  position: relative;
  min-height: 250px;
}

.character {
  position: absolute;
  left: 50%;
  bottom: 112px;
  width: 118px;
  height: 130px;
  transform: translateX(-50%);
  animation: operatorWork 2.4s ease-in-out infinite;
}

.character-head {
  position: absolute;
  left: 50%;
  top: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ffe19b, #d8a844);
  box-shadow: 0 12px 28px rgba(216, 168, 68, 0.18);
}

.character-head::before,
.character-head::after {
  content: "";
  position: absolute;
  top: 23px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(8, 9, 11, 0.74);
}

.character-head::before {
  left: 17px;
}

.character-head::after {
  right: 17px;
}

.character-body {
  position: absolute;
  left: 50%;
  top: 56px;
  width: 78px;
  height: 72px;
  border-radius: 24px 24px 10px 10px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(66, 214, 198, 0.42), rgba(66, 214, 198, 0.14));
  border: 1px solid rgba(66, 214, 198, 0.34);
}

.arm {
  position: absolute;
  top: 86px;
  width: 46px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d8a844, #ffe19b);
  transform-origin: 8px 50%;
  animation: typingArm 0.72s ease-in-out infinite;
}

.arm-left {
  left: 14px;
  transform: rotate(22deg);
}

.arm-right {
  right: 14px;
  transform: rotate(158deg);
  animation-delay: 0.18s;
}

.computer {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: min(196px, 96%);
  height: 112px;
  border-radius: 8px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #080b10;
  padding: 14px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.computer::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(66, 214, 198, 0.08), rgba(255, 225, 155, 0.06)),
    #0d1218;
}

.computer::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 86px;
  height: 12px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.18);
}

.computer-label,
.computer i {
  position: relative;
  z-index: 2;
}

.computer-label {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.computer i {
  display: block;
  height: 8px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(66, 214, 198, 0.72);
  animation: monitorBars 2.2s ease-in-out infinite;
}

.computer i:nth-of-type(2) {
  width: 72%;
  background: rgba(255, 225, 155, 0.72);
  animation-delay: 0.25s;
}

.computer i:nth-of-type(3) {
  width: 48%;
  background: rgba(255, 107, 95, 0.72);
  animation-delay: 0.5s;
}

.monitor-two i {
  animation-delay: 0.35s;
}

.keyboard {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  width: min(150px, 82%);
  height: 22px;
  padding: 6px;
  border-radius: 8px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.12);
}

.keyboard span {
  width: 24px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  animation: keyTap 0.72s ease-in-out infinite;
}

.keyboard span:nth-child(2) {
  animation-delay: 0.12s;
}

.keyboard span:nth-child(3) {
  animation-delay: 0.24s;
}

.office-metrics {
  display: grid;
  gap: 10px;
}

.office-metrics div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.office-metrics strong {
  color: #f4f7fb;
}

@keyframes phoneLift {
  0%, 100% {
    transform: translateY(14px) rotate(-2deg);
  }
  35%, 72% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes leadSlide {
  0%, 12% {
    opacity: 0;
    transform: translateX(-28px);
  }
  22%, 70% {
    opacity: 1;
    transform: translateX(0);
  }
  86%, 100% {
    opacity: 0.35;
    transform: translateX(10px);
  }
}

@keyframes stagePulse {
  0%, 18%, 100% {
    border-color: rgba(255, 255, 255, 0.13);
    transform: translateX(0);
  }
  30%, 58% {
    border-color: rgba(66, 214, 198, 0.55);
    transform: translateX(-8px);
  }
}

@keyframes operatorWork {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes monitorBars {
  0%, 100% {
    width: 44%;
  }
  50% {
    width: 94%;
  }
}

@keyframes typingArm {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 7px;
  }
}

@keyframes keyTap {
  0%, 100% {
    opacity: 0.45;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(2px);
  }
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.lead-card {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.lead-card-raised {
  margin-top: 48px;
}

.lead-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 66px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.lead-card-top span {
  color: #dfe4eb;
  font-weight: 800;
}

.lead-card-top strong {
  color: var(--teal);
  font-size: 1.7rem;
}

.lead-card img {
  width: 100%;
  aspect-ratio: 0.46;
  object-fit: cover;
  object-position: top;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: center;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 107, 95, 0.12), transparent 30%),
    linear-gradient(180deg, #0b0d10, #101318);
}

.about-story {
  max-width: 780px;
}

.about-story h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.about-story p:not(.section-kicker) {
  color: #c6ccd6;
  font-size: 1.08rem;
}

.about-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-proof div {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.about-proof strong {
  color: var(--gold-light);
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1;
}

.about-proof span {
  color: #d7dce4;
  font-weight: 780;
}

.exclusive-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: center;
  padding: clamp(68px, 9vw, 118px) clamp(20px, 6vw, 80px);
  background:
    radial-gradient(circle at 76% 30%, rgba(255, 107, 95, 0.13), transparent 30%),
    linear-gradient(180deg, #101318, #07080a);
}

.exclusive-copy {
  max-width: 780px;
}

.exclusive-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.exclusive-copy p:not(.section-kicker) {
  color: #c6ccd6;
  font-size: 1.08rem;
}

.exclusive-grid {
  display: grid;
  gap: 14px;
}

.exclusive-card {
  min-height: 210px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(66, 214, 198, 0.26);
  background:
    linear-gradient(135deg, rgba(66, 214, 198, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.055);
}

.exclusive-card.warning-card {
  border-color: rgba(255, 107, 95, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 107, 95, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.055);
}

.exclusive-card span {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.exclusive-card.warning-card span {
  color: #ffb8b2;
}

.exclusive-card h3 {
  margin: 34px 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1;
}

.exclusive-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.system-section {
  background:
    linear-gradient(180deg, #101318, #08090b);
}

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

.system-grid article,
.expectation-list div {
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.step {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--coral);
  font-weight: 950;
}

.system-grid h3,
.expectation-list h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.12;
}

.system-grid p,
.expectation-list p {
  color: var(--muted);
  margin-bottom: 0;
}

.guarantee-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 7vw, 82px);
  align-items: center;
  background: linear-gradient(135deg, #f5eee0, #ffffff);
  color: #111318;
}

.guarantee-section .section-kicker {
  color: #ad7814;
}

.guarantee-copy p {
  max-width: 720px;
  margin-top: 22px;
  color: #4f5661;
}

.guarantee-panel {
  display: grid;
  gap: 12px;
}

.guarantee-panel div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 92px;
  padding: 18px 20px;
  border-radius: 8px;
  background: #111318;
  color: var(--text);
}

.guarantee-panel span {
  color: #cdd3dc;
  font-weight: 800;
}

.guarantee-panel strong {
  color: var(--gold-light);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.expectations-section {
  background: #08090b;
}

.expectation-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.66fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
  background:
    radial-gradient(circle at 18% 24%, rgba(66, 214, 198, 0.14), transparent 28%),
    linear-gradient(160deg, #111318, #08090b 74%);
}

.booking-content {
  position: sticky;
  top: 110px;
}

.booking-content p {
  max-width: 610px;
  margin-top: 22px;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #dfe4eb;
  font-size: 0.92rem;
  font-weight: 850;
}

.hidden-field {
  display: none;
}

input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--white);
  font: inherit;
}

input:focus {
  outline: 2px solid rgba(66, 214, 198, 0.65);
  outline-offset: 2px;
}

.booking-form .button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.bottom-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 6vw, 80px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, #0b0d10, #111318);
}

.trust-badges,
.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 225, 155, 0.34);
  background: rgba(216, 168, 68, 0.1);
  color: var(--gold-light);
  font-size: 0.86rem;
  font-weight: 900;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border-radius: 999px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #e7eaf0;
  font-weight: 850;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  color: var(--teal);
  border-color: rgba(66, 214, 198, 0.48);
  transform: translateY(-1px);
}

.site-footer {
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 18px;
  padding: 32px 20px;
  border-top: 1px solid var(--line);
  background: #050608;
  color: #dfe4eb;
}

.site-footer a {
  color: var(--gold-light);
  font-weight: 900;
}

.success-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 18%, rgba(216, 168, 68, 0.18), transparent 34%),
    linear-gradient(150deg, #08090b, #111318);
}

.success-wrap {
  width: min(680px, 100%);
  text-align: center;
}

.success-wrap img {
  width: 86px;
  height: 86px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 1px solid rgba(216, 168, 68, 0.65);
  object-fit: cover;
}

.success-wrap h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.success-wrap p:not(.section-kicker) {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.success-home {
  display: block;
  margin-top: 18px;
  color: var(--gold-light);
  font-weight: 900;
}

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

  nav {
    display: none;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-bg {
    opacity: 0.34;
  }

  .phone-one {
    right: 3vw;
    top: 94px;
  }

  .phone-two {
    right: 32vw;
    top: 188px;
  }

  .section-heading,
  .video-proof-section,
  .creative-showcase,
  .about-section,
  .exclusive-section,
  .guarantee-section,
  .booking-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .journey-animation {
    grid-template-columns: minmax(0, 1fr);
  }

  .client-scene {
    min-height: 520px;
  }

  .proof-grid,
  .system-grid,
  .expectation-list {
    grid-template-columns: 1fr 1fr;
  }

  .lead-card-raised {
    margin-top: 0;
  }

  .booking-content {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand span {
    max-width: 120px;
    line-height: 1.05;
  }

  .header-cta {
    padding-inline: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
  }

  .hero-inner {
    gap: 28px;
  }

  .hero-stats,
  .proof-grid,
  .system-grid,
  .expectation-list {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-stats div {
    padding: 10px 8px;
  }

  .hero-stats dt {
    font-size: 1.5rem;
  }

  .hero-stats dd {
    font-size: 0.72rem;
    line-height: 1.15;
  }

  .hero-actions .button {
    width: 100%;
  }

  .phone-one {
    width: 210px;
    right: -42px;
    top: 98px;
  }

  .phone-two,
  .phone-three {
    display: none;
  }

  .hero-bg {
    opacity: 0.24;
  }

  .hero-form {
    padding: 18px;
  }

  .section,
  .video-proof-section,
  .creative-showcase,
  .about-section,
  .exclusive-section,
  .guarantee-section,
  .booking-section {
    padding-inline: 18px;
  }

  .motion-stage {
    aspect-ratio: auto;
    min-height: 300px;
    padding-top: 92px;
  }

  .proof-video-stage {
    min-height: 680px;
  }

  .proof-video-phone {
    left: 50%;
    top: 42%;
    width: min(250px, 68%);
    transform: translate(-50%, -50%) rotate(-3deg);
  }

  .calendar-pop {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 26px;
    width: auto;
  }

  .lead-burst-one {
    left: 18px;
    top: 20px;
  }

  .lead-burst-two {
    right: 18px;
    top: 72px;
    bottom: auto;
  }

  .lead-burst-three {
    left: 50%;
    bottom: 234px;
    transform: translateX(-50%);
  }

  @keyframes proofPhoneFloat {
    0%, 100% {
      transform: translate(-50%, -50%) rotate(-3deg);
    }
    50% {
      transform: translate(-50%, -54%) rotate(-1deg);
    }
  }

  .motion-stage canvas {
    inset: 92px 0 0;
    height: calc(100% - 92px);
  }

  .motion-overlay {
    top: 12px;
    right: 12px;
    bottom: auto;
    left: 12px;
    align-content: start;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
  }

  .motion-overlay span,
  .motion-overlay strong {
    min-height: 30px;
    padding: 7px 10px;
    font-size: 0.68rem;
  }

  .journey-section {
    padding-inline: 18px;
  }

  .journey-animation {
    min-height: auto;
  }

  .client-scene {
    min-height: 690px;
  }

  .phone-scene {
    left: 50%;
    bottom: 260px;
    width: min(230px, 72%);
    transform: translateX(-50%);
    animation-name: phoneLiftMobile;
  }

  .phone-frame {
    min-height: 330px;
  }

  .lead-alert {
    min-height: 54px;
    font-size: 0.78rem;
  }

  .journey-stages {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 24px;
    width: auto;
    transform: none;
  }

  .journey-stages div {
    min-height: 62px;
    padding: 13px;
  }

  .journey-stages strong {
    font-size: 0.94rem;
  }

  .office-scene {
    padding: 18px;
  }

  .office-header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 28px;
  }

  .desk-row {
    gap: 10px;
  }

  .operator {
    min-height: 210px;
  }

  .character {
    bottom: 92px;
    width: 96px;
    height: 112px;
  }

  .character-head {
    width: 44px;
    height: 44px;
  }

  .character-head::before,
  .character-head::after {
    top: 19px;
  }

  .character-body {
    top: 46px;
    width: 66px;
    height: 62px;
  }

  .arm {
    top: 74px;
    width: 38px;
    height: 10px;
  }

  .computer {
    bottom: 24px;
    height: 88px;
    padding: 11px;
  }

  .computer-label {
    margin-bottom: 9px;
    font-size: 0.58rem;
  }

  .computer i {
    height: 7px;
    margin-bottom: 8px;
  }

  .keyboard {
    height: 19px;
  }

  .keyboard span {
    width: 18px;
  }

  @keyframes phoneLiftMobile {
    0%, 100% {
      transform: translateX(-50%) translateY(14px) rotate(-2deg);
    }
    35%, 72% {
      transform: translateX(-50%) translateY(0) rotate(0deg);
    }
  }

  .bottom-trust {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 18px;
  }

  .about-proof {
    grid-template-columns: 1fr;
  }

  .about-proof div {
    min-height: 140px;
  }

  .lead-card img {
    max-height: 620px;
  }

  .guarantee-panel div {
    align-items: flex-start;
    flex-direction: column;
  }
}
