:root {
  --bg: #080b14;
  --bg-2: #0e1424;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.16);
  --text: #f5f7fb;
  --muted: #aab6c8;
  --cyan: #50e7ff;
  --violet: #8a5cff;
  --pink: #ff4fd8;
  --green: #72ffb6;
  --gold: #ffd166;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

body.theme-electric {
  --bg: #050914;
  --bg-2: #0b1020;
  --cyan: #42f7ff;
  --violet: #396bff;
  --pink: #17ff9a;
  --green: #7cffc4;
  --gold: #f8d15d;
}

body.theme-executive {
  --bg: #0b0d12;
  --bg-2: #121722;
  --panel: rgba(255, 255, 255, 0.068);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --cyan: #d5a853;
  --violet: #7a8799;
  --pink: #f0dfb5;
  --green: #9ee6bf;
  --gold: #d5a853;
}

body.theme-clean {
  --bg: #07131d;
  --bg-2: #0d1f2e;
  --panel: rgba(236, 249, 255, 0.09);
  --panel-strong: rgba(236, 249, 255, 0.14);
  --cyan: #62d5ff;
  --violet: #37d6a1;
  --pink: #9fc7ff;
  --green: #74f0bc;
  --gold: #bdefff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(80, 231, 255, 0.16), transparent 34rem),
    radial-gradient(circle at 82% 6%, rgba(255, 79, 216, 0.14), transparent 30rem),
    linear-gradient(180deg, var(--bg), #090d18 48%, #070a12);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

img {
  max-width: 100%;
}

a,
button,
input,
textarea {
  outline-color: var(--cyan);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--cyan);
  color: #06101b;
  font-weight: 800;
}

.fw-black {
  font-weight: 900;
}

.glass-nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 11, 20, 0.72);
  backdrop-filter: blur(20px);
}

.navbar-brand {
  color: var(--text);
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 58%, var(--pink));
  color: white;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 0 34px rgba(80, 231, 255, 0.28);
}

.navbar .nav-link {
  color: rgba(245, 247, 251, 0.78);
  font-weight: 700;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: white;
}

.section-pad {
  padding: 96px 0;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 128px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.18;
}

.hero-bg::before {
  top: 8%;
  right: -18rem;
  background: var(--violet);
}

.hero-bg::after {
  bottom: 3%;
  left: -16rem;
  background: var(--cyan);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 8px 12px;
  border: 1px solid rgba(80, 231, 255, 0.28);
  border-radius: 999px;
  background: rgba(80, 231, 255, 0.08);
  color: #dffaff;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-lead,
.section-copy {
  color: var(--muted);
}

.hero-lead {
  max-width: 660px;
  font-size: clamp(1.1rem, 2vw, 1.34rem);
}

.display-1 {
  font-size: clamp(4rem, 10vw, 8.9rem);
  letter-spacing: 0;
}

.section-title {
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.btn {
  --bs-btn-border-radius: 16px;
  min-height: 48px;
  font-weight: 900;
}

.btn-lg {
  --bs-btn-padding-x: 1.45rem;
  --bs-btn-padding-y: 0.9rem;
}

.btn-glow {
  border: 0;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 62%, var(--pink));
  color: white;
  box-shadow: 0 18px 42px rgba(80, 231, 255, 0.18), 0 10px 28px rgba(138, 92, 255, 0.24);
}

.btn-glow:hover,
.btn-glow:focus {
  color: white;
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: white;
}

.btn-ghost:hover,
.btn-ghost:focus {
  border-color: rgba(80, 231, 255, 0.55);
  background: rgba(80, 231, 255, 0.09);
  color: white;
}

.hero-proof > div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 0.95rem;
  color: white;
}

.hero-proof span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.88rem;
}

.glass-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 40%);
  pointer-events: none;
}

.transform-visual {
  position: relative;
  min-height: 570px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 25% 20%, rgba(80, 231, 255, 0.18), transparent 16rem),
    radial-gradient(circle at 80% 80%, rgba(255, 79, 216, 0.16), transparent 18rem);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.browser-card {
  position: absolute;
  width: 68%;
  min-height: 290px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
}

.browser-old {
  top: 54px;
  left: 32px;
  background: #e9dfc7;
  color: #4c3828;
  transform: rotate(-4deg);
  animation: oldSiteFade 6s ease-in-out infinite;
}

.browser-new {
  right: 32px;
  bottom: 56px;
  background: #10192c;
  color: white;
  transform: rotate(3deg);
  animation: newSiteRise 6s ease-in-out infinite;
}

.browser-dots {
  display: flex;
  gap: 7px;
  margin-bottom: 24px;
}

.browser-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.32;
}

.old-title,
.old-nav,
.old-copy,
.old-box,
.new-chip,
.new-title,
.new-copy,
.new-grid span {
  border-radius: 999px;
}

.old-title {
  width: 64%;
  height: 28px;
  background: #7b5a3e;
}

.old-nav {
  width: 92%;
  height: 22px;
  margin-top: 20px;
  background: #a67b4b;
}

.old-copy {
  width: 74%;
  height: 90px;
  margin-top: 28px;
  border-radius: 16px;
  background: #f7efd7;
}

.old-box {
  width: 38%;
  height: 46px;
  margin-top: 20px;
  background: #8c653f;
}

.new-chip {
  width: 130px;
  height: 18px;
  background: var(--cyan);
  box-shadow: 0 0 26px rgba(80, 231, 255, 0.44);
}

.new-title {
  width: 86%;
  height: 42px;
  margin-top: 22px;
  background: linear-gradient(90deg, white, #bfc8ff);
}

.new-copy {
  width: 64%;
  height: 54px;
  margin-top: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
}

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

.new-grid span {
  height: 58px;
  background: linear-gradient(135deg, rgba(80, 231, 255, 0.8), rgba(138, 92, 255, 0.7));
}

.scan-line {
  position: absolute;
  top: 8%;
  bottom: 8%;
  width: 3px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 24px var(--cyan), 0 0 80px var(--cyan);
  animation: scan 6s ease-in-out infinite;
}

.floating-badge {
  position: absolute;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 11, 20, 0.68);
  color: white;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.badge-one {
  top: 28px;
  right: 48px;
}

.badge-two {
  left: 44px;
  bottom: 34px;
}

.trust-section,
.pricing-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
}

.stat-card {
  padding: 28px 20px;
  text-align: center;
}

.stat-card .counter {
  display: block;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
  font-weight: 900;
  color: white;
}

.stat-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.process-card,
.price-card,
.testimonial {
  padding: 28px;
}

.process-card .step {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 34px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: white;
  font-size: 1.35rem;
  font-weight: 900;
}

.process-card h3,
.feature-card h3,
.price-card h3 {
  font-size: 1.25rem;
  font-weight: 900;
}

.process-card p,
.price-card p,
.testimonial figcaption {
  color: var(--muted);
}

.photo-story-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(80, 231, 255, 0.09), transparent 25rem),
    radial-gradient(circle at 82% 80%, rgba(138, 92, 255, 0.08), transparent 24rem);
}

.photo-card {
  height: 100%;
  margin: 0;
  padding: 10px;
}

.photo-card img {
  width: 100%;
  height: 310px;
  display: block;
  object-fit: cover;
  border-radius: 18px;
}

.photo-card-tall img {
  height: 520px;
}

.photo-card figcaption {
  padding: 18px 10px 8px;
}

.photo-card figcaption strong,
.photo-card figcaption span {
  display: block;
}

.photo-card figcaption strong {
  color: white;
  font-size: 1.05rem;
  font-weight: 900;
}

.photo-card figcaption span {
  margin-top: 4px;
  color: var(--muted);
}

.before-after-section {
  position: relative;
}

.comparison {
  position: relative;
  isolation: isolate;
  aspect-ratio: 16 / 9;
  min-height: 340px;
}

.comparison-img,
.comparison-before img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.comparison-before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 48%;
  overflow: hidden;
  z-index: 2;
  border-right: 2px solid white;
}

.comparison-before img {
  width: calc(100vw - 2rem);
  max-width: 1116px;
}

.comparison-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.comparison-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 48%;
  z-index: 4;
  width: 2px;
  background: white;
  transform: translateX(-50%);
  pointer-events: none;
}

.comparison-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.36);
}

.comparison-handle span::before {
  content: "↔";
  color: #111827;
  font-weight: 900;
}

.comparison-label {
  position: absolute;
  z-index: 6;
  top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  color: white;
  font-size: 0.84rem;
  font-weight: 900;
  pointer-events: none;
}

.label-old {
  left: 18px;
}

.label-new {
  right: 18px;
}

.feature-card {
  min-height: 150px;
  padding: 22px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.feature-card:hover {
  border-color: rgba(80, 231, 255, 0.42);
  transform: translateY(-4px);
}

.feature-card span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(80, 231, 255, 0.12);
  color: var(--cyan);
  font-size: 1.45rem;
  font-weight: 900;
}

.price-card {
  display: flex;
  flex-direction: column;
}

.price-card.popular {
  border-color: rgba(80, 231, 255, 0.5);
  transform: translateY(-14px);
}

.popular-badge {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(80, 231, 255, 0.12);
  color: #dffaff;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin: 20px 0;
  font-size: 3rem;
  font-weight: 900;
  color: white;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
}

.setup-fee {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding: 13px 14px;
  border: 1px solid rgba(80, 231, 255, 0.22);
  border-radius: 16px;
  background: rgba(80, 231, 255, 0.075);
}

.setup-fee span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.setup-fee strong {
  color: white;
  font-size: 1.45rem;
  font-weight: 900;
}

.term-note {
  margin: 0 0 22px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: #dce5f3;
  font-size: 0.9rem;
  font-weight: 800;
}

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

.price-card li {
  color: #dce5f3;
}

.price-card li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--green);
  font-weight: 900;
}

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

.testimonial blockquote {
  margin: 0 0 24px;
  color: white;
  font-size: 1.08rem;
}

.testimonial figcaption {
  margin: 0;
  font-weight: 800;
}

.accordion {
  --bs-accordion-bg: rgba(255, 255, 255, 0.07);
  --bs-accordion-border-color: rgba(255, 255, 255, 0.14);
  --bs-accordion-btn-color: white;
  --bs-accordion-active-color: white;
  --bs-accordion-active-bg: rgba(80, 231, 255, 0.11);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(80, 231, 255, 0.16);
  overflow: hidden;
  border-radius: 24px;
}

.accordion-button {
  font-weight: 900;
}

.accordion-body {
  color: var(--muted);
}

.contact-shell {
  padding: clamp(24px, 5vw, 54px);
}

.form-control {
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.form-control:focus {
  border-color: rgba(80, 231, 255, 0.62);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 0.25rem rgba(80, 231, 255, 0.12);
  color: white;
}

.form-label {
  color: #d9e2ef;
  font-weight: 800;
}

.site-footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #060913;
  color: var(--muted);
}

.variant-switcher {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1040;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: min(420px, calc(100% - 32px));
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: rgba(8, 11, 20, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.3);
}

.variant-switcher a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 10px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 900;
}

.variant-switcher a[aria-current="page"],
.variant-switcher a:hover {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
}

.footer-links,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a {
  color: #dce5f3;
  text-decoration: none;
  font-weight: 800;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: white;
  text-decoration: none;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes scan {
  0%, 100% {
    left: 28%;
  }
  50% {
    left: 73%;
  }
}

@keyframes oldSiteFade {
  0%, 100% {
    opacity: 0.95;
    filter: saturate(0.75);
  }
  50% {
    opacity: 0.52;
    filter: saturate(0.3) blur(0.3px);
  }
}

@keyframes newSiteRise {
  0%, 100% {
    transform: rotate(3deg) translateY(0);
  }
  50% {
    transform: rotate(1deg) translateY(-12px);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 991.98px) {
  .section-pad {
    padding: 76px 0;
  }

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

  .transform-visual {
    min-height: 500px;
  }

  .price-card.popular {
    transform: none;
  }

  .photo-card-tall img {
    height: 390px;
  }
}

@media (max-width: 767.98px) {
  .display-1 {
    font-size: 4rem;
  }

  .section-title {
    font-size: 2.55rem;
  }

  .transform-visual {
    min-height: 430px;
    border-radius: 24px;
  }

  .browser-card {
    width: 78%;
    min-height: 235px;
    padding: 18px;
  }

  .browser-old {
    top: 34px;
    left: 14px;
  }

  .browser-new {
    right: 14px;
    bottom: 34px;
  }

  .floating-badge {
    font-size: 0.82rem;
  }

  .badge-one {
    right: 18px;
  }

  .badge-two {
    left: 18px;
  }

  .comparison {
    aspect-ratio: 4 / 5;
    min-height: 430px;
  }

  .comparison-before img {
    width: calc(100vw - 1.5rem);
  }

  .photo-card img,
  .photo-card-tall img {
    height: 255px;
  }
}

@media (max-width: 420px) {
  .display-1 {
    font-size: 3.45rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .hero-proof > div {
    padding: 14px;
  }

  .feature-card {
    min-height: 138px;
    padding: 18px;
  }

  .feature-card h3 {
    font-size: 1rem;
  }
}
