/* =========================================================
   FactoryShop | Golden Letters — recreated hand-written CSS
   Fonts actually used by the original design: Inter (headings/body)
   and Plus Jakarta Sans (buttons), both loaded from Google Fonts in
   the original page's <head>. Manrope / Fira Code (self-hosted here
   as woff2) were the WordPress theme's leftover default fonts and are
   NOT what renders in the real design — they're kept as the local,
   offline-safe fallback so the page still looks close to the original
   without an internet connection. See @font-face below.
   ========================================================= */

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("fonts/Manrope-VariableFont_wght.woff2") format("woff2");
}

@font-face {
  font-family: "Fira Code";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("fonts/FiraCode-VariableFont_wght.woff2") format("woff2");
}

:root {
  color-scheme: dark;

  /* palette (extracted from the original Elementor CSS) */
  --bg: #020511;
  --bg-card: #031025;
  --bg-card-strong: #00000b;
  --border-blue: #2c71ff59;
  --border-blue-strong: #2c71ff;
  --blue: #2c88ff;
  --blue-2: #2c71ff;
  --green: #00992b;
  --green-bright: #00d968;
  --gold: #e3be27;
  --red: #ff0000;
  --white: #ffffff;
  --text: #d2d2d2;
  --text-dim: #b1b3b7;
  --text-muted: #757575;
  --dark-ink: #161616;
  --old-way-bg: #e7e7e7;
  --old-way-ink: #171719;

  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 10px;

  --font-body: "Inter", "Manrope", -apple-system, Segoe UI, sans-serif;
  --font-btn: "Plus Jakarta Sans", "Manrope", -apple-system, Segoe UI, sans-serif;

  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section--tight {
  padding: 40px 20px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.eyebrow {
  color: var(--blue);
}

.center {
  text-align: center;
}

.lede {
  max-width: 640px;
  margin: 16px auto 0;
  text-align: center;
  color: var(--text);
  font-size: 17px;
}

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */

.btn-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-btn);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  border-radius: var(--radius-sm);
  padding: 26px 70px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.btn-cta:hover {
  background-color: #00b834;
  transform: translateY(-2px);
}

.btn-cta small {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  opacity: 0.9;
}

.btn-wrap {
  display: flex;
  justify-content: center;
  margin: 24px 0;
}

/* trust bullets under CTA buttons */
.trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  margin: 0 0 20px;
  padding: 0;
  font-size: 14px;
  color: var(--white);
}

.trust-row li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-row svg {
  width: 14px;
  height: 14px;
  fill: var(--blue);
  flex-shrink: 0;
}

.trust-row .hide-mobile {
  display: flex;
}

.payment-badges {
  display: flex;
  justify-content: center;
  margin: 18px 0 10px;
}

.payment-badges img {
  max-width: 260px;
}

.fine-print {
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
  max-width: 480px;
  margin: 0 auto;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 20px 60px;
  background-color: #060b1a;
  background-image: radial-gradient(60% 50% at 50% 0%, #246bff40, transparent 70%),
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(69, 137, 255, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(69, 137, 255, 0.15), transparent);
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: -5rem;
  left: 0;
  right: 0;
  height: 140%;
  pointer-events: none;
  opacity: 0.9;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black, transparent);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black, transparent);
}

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

.hero__title {
  max-width: 780px;
  margin: 0 auto;
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
}

.hero__title .blue {
  color: var(--blue);
}

.hero__title .green {
  color: var(--green-bright);
}

.hero__copy {
  max-width: 620px;
  margin: 24px auto 0;
  font-size: 17px;
  color: var(--white);
}

.hero__copy strong {
  font-weight: 600;
}

.hero__note {
  max-width: 620px;
  margin: 10px auto 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
}

/* video / VSL */
.hero__video {
  position: relative;
  max-width: 620px;
  margin: 32px auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-blue);
  box-shadow: 0 20px 50px -20px rgba(36, 107, 255, 0.4);
  background: #000;
}

.hero__video vturb-smartplayer {
  display: block;
  width: 100%;
}

.hero .btn-wrap {
  margin-top: 8px;
}

/* avatar strip + rating */
.hero__proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 36px 0 8px;
}

.avatar-row {
  display: flex;
}

.avatar-row img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -12px;
  object-fit: cover;
}

.avatar-row img:first-child {
  margin-left: 0;
}

.stars {
  display: flex;
  gap: 3px;
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.rating-score {
  font-size: 14px;
  color: var(--text);
}

/* counters */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 40px auto 0;
}

.stat {
  flex: 1 1 140px;
  min-width: 130px;
  background-image: linear-gradient(180deg, #041b3e 0%, #05070c 100%);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 23px;
  text-align: center;
}

.stat__number {
  font-size: 35px;
  font-weight: 600;
  color: var(--blue-2);
  line-height: 1;
}

.stat__label {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text);
  text-transform: uppercase;
}

/* =========================================================
   Generic section heading
   ========================================================= */

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
}

.section-head h2 .blue {
  color: var(--blue);
  font-weight: 900;
}

.section-head p {
  margin-top: 16px;
  color: var(--text);
  font-size: 18px;
}

/* =========================================================
   Testimonial mini-carousel (social proof strip)
   ========================================================= */

.proof-carousel-section {
  background: var(--bg);
  padding: 60px 20px;
  border-top: 1px solid var(--border-blue);
  border-bottom: 1px solid var(--border-blue);
}

.proof-carousel {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  overflow: hidden;
}

.proof-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.proof-card {
  flex: 0 0 calc(50% - 10px);
  background: var(--bg-card);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 300;
}

.verified-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--green-bright);
}

.proof-card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 15px;
  font-weight: 300;
  flex-grow: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer strong {
  display: block;
  color: var(--text-dim);
  font-size: 18px;
  font-weight: 600;
}

.reviewer span {
  display: block;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 300;
}

.carousel-arrows {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.carousel-arrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-blue);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrows button:hover {
  background: var(--bg-card);
}

.carousel-arrows svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

/* =========================================================
   3-step "How it works"
   ========================================================= */

.steps {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.step {
  display: flex;
  align-items: center;
  gap: 60px;
}

.step:nth-child(even) {
  flex-direction: row-reverse;
}

.step__text {
  flex: 1 1 320px;
}

.step__text h3 {
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
}

.step__text p {
  margin-top: 12px;
  color: var(--text);
  font-size: 17px;
}

.step__image {
  flex: 1 1 480px;
}

.step__image img {
  border-radius: var(--radius-md);
}

.note-box {
  margin: 60px auto 0;
  max-width: 640px;
  text-align: center;
}

.note-box p:first-child {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.note-box p:last-child {
  color: var(--text);
  font-size: 16px;
}

/* =========================================================
   Feature grid ("Inside FactoryShop")
   ========================================================= */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.feature-card svg {
  width: 28px;
  height: 28px;
  fill: var(--blue);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-card p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
}

/* =========================================================
   Old way vs FactoryShop comparison
   ========================================================= */

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.compare-card {
  border-radius: var(--radius-lg);
  padding: 45px;
}

.compare-card h3 {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 24px;
}

.compare-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.compare-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
  font-weight: 300;
}

.compare-card li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.compare-card--old {
  background: var(--old-way-bg);
  color: var(--old-way-ink);
}

.compare-card--old h3 {
  color: var(--old-way-ink);
}

.compare-card--old li {
  color: var(--old-way-ink);
}

.compare-card--old li svg {
  fill: var(--gold);
}

.compare-card--new {
  background-image: linear-gradient(180deg, #377ce4 0%, #06275a 100%);
  color: var(--white);
}

.compare-card--new li {
  color: var(--white);
}

.compare-card--new li svg {
  fill: var(--green-bright);
}

/* =========================================================
   Coverage section + accordion
   ========================================================= */

.coverage-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--text);
  font-size: 15px;
  max-width: 620px;
  margin: 32px auto;
}

.accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion details {
  background: var(--bg-card);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 22px 26px;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}

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

.accordion summary .icon-plus {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

.accordion summary .icon-plus::before,
.accordion summary .icon-plus::after {
  content: "";
  position: absolute;
  background: var(--blue);
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.accordion summary .icon-plus::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.accordion summary .icon-plus::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.accordion details[open] summary .icon-plus::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.accordion-body {
  padding: 0 26px 26px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
}

.faq-note {
  text-align: center;
  color: var(--text);
  margin-top: 40px;
  font-style: italic;
}

/* =========================================================
   $3,600/year narrative block
   ========================================================= */

.story {
  border-top: 1px solid var(--border-blue);
  border-bottom: 1px solid var(--border-blue);
  padding: 80px 0;
}

.story .container {
  max-width: 760px;
}

.story h2 {
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  color: var(--white);
  margin-bottom: 28px;
}

.story h2 .blue {
  color: var(--blue);
}

.story p {
  color: var(--text);
  font-size: 17px;
  margin: 0 0 20px;
}

.story strong {
  color: var(--white);
  font-weight: 600;
}

/* =========================================================
   Testimonial grid ("What working mechanics are saying")
   ========================================================= */

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card .reviewer {
  order: 1;
}

.testimonial-card .verified-badge {
  order: 2;
}

.testimonial-card p {
  order: 3;
  margin: 0;
  color: var(--text);
  font-size: 15px;
}

/* =========================================================
   Offer / pricing section
   ========================================================= */

.offer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 45px;
}

.offer-card > p:first-child {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 20px;
  text-align: center;
}

.offer-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
}

.offer-list li svg {
  width: 18px;
  height: 18px;
  fill: var(--green-bright);
  flex-shrink: 0;
  margin-top: 3px;
}

.offer-list b {
  color: var(--white);
}

.offer-list span {
  display: block;
  color: var(--text);
  font-weight: 300;
  margin-top: 2px;
}

.compare-price {
  text-align: center;
  color: var(--white);
  font-size: 18px;
  margin: 16px 0;
}

.compare-price del {
  color: var(--red);
  margin-left: 6px;
}

.offer-card .license-label {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-top: 24px;
}

.offer-card .price {
  text-align: center;
  font-size: 100px;
  font-weight: 700;
  color: var(--green);
  margin: 8px 0 24px;
  line-height: 1;
}

/* guarantee white card */
.guarantee {
  display: flex;
  align-items: center;
  gap: 50px;
  background: var(--white);
  color: var(--dark-ink);
  border-radius: var(--radius-lg);
  box-shadow: 0 37px 67px 0 rgba(0, 0, 0, 0.15);
  padding: 64px;
  margin-top: 70px;
}

.guarantee img {
  width: 220px;
  flex-shrink: 0;
}

.guarantee h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark-ink);
}

.guarantee p {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 300;
  color: var(--dark-ink);
}

.guarantee strong {
  font-weight: 600;
}

/* =========================================================
   Urgency / 500 licenses section
   ========================================================= */

.urgency {
  text-align: center;
}

.urgency h2 {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
}

.urgency h2 .green {
  color: var(--green-bright);
}

.urgency img {
  max-width: 420px;
  margin: 32px auto 0;
}

.urgency .tagline {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.urgency p.desc {
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--text);
  font-size: 17px;
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  border-top: 1px solid var(--border-blue-strong);
  padding: 35px 20px;
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
}

.site-footer p {
  margin: 4px 0;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1024px) {
  .container {
    max-width: 100%;
  }

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

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

  .proof-card {
    flex: 0 0 100%;
  }

  .offer-layout {
    grid-template-columns: 1fr;
  }

  .guarantee {
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 50px 0;
  }

  .hero {
    padding: 60px 16px 40px;
  }

  .hero__title {
    font-size: 34px;
  }

  .section-head h2 {
    font-size: 28px;
  }

  .stat {
    flex: 1 1 45%;
  }

  .step,
  .step:nth-child(even) {
    flex-direction: column;
  }

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

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

  .compare-card {
    padding: 28px;
  }

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

  .guarantee {
    flex-direction: column;
    text-align: center;
    padding: 32px;
  }

  .offer-card {
    padding: 28px;
  }

  .offer-card .price {
    font-size: 64px;
  }

  .trust-row .hide-mobile {
    display: none;
  }

  .urgency img {
    max-width: 280px;
  }
}

/* =========================================================
   2026 visual system refresh
   ========================================================= */

:root {
  --bg: #050814;
  --bg-elevated: #0a1020;
  --bg-card: #0d1528;
  --bg-card-strong: #101b33;
  --border-blue: rgba(101, 143, 255, 0.18);
  --border-blue-strong: rgba(101, 143, 255, 0.42);
  --blue: #6aa5ff;
  --blue-2: #397dff;
  --green: #0aa94f;
  --green-bright: #42e985;
  --gold: #ffd166;
  --white: #f8fbff;
  --text: #c4cddd;
  --text-dim: #9ba8ba;
  --text-muted: #6f7b8e;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
  --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 32px 80px rgba(0, 0, 0, 0.38);
}

html {
  scroll-padding-top: 24px;
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(45, 113, 255, 0.08), transparent 28rem),
    var(--bg);
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

::selection {
  color: var(--white);
  background: rgba(57, 125, 255, 0.7);
}

.container {
  padding-inline: 28px;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section--features,
.section--coverage,
.section--offer {
  background: linear-gradient(180deg, rgba(12, 20, 38, 0.72), rgba(5, 8, 20, 0.32));
  border-block: 1px solid rgba(101, 143, 255, 0.1);
}

.section-head {
  max-width: 780px;
  margin-bottom: 58px;
}

.section-head::before {
  content: "FACTORYSHOP";
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-family: "Fira Code", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.section-head h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-wrap: balance;
}

.section-head p {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.65;
}

.btn-cta {
  position: relative;
  min-width: min(100%, 390px);
  padding: 20px 42px;
  overflow: hidden;
  background: linear-gradient(135deg, #0ab14f 0%, #078f40 100%);
  border: 1px solid rgba(108, 255, 170, 0.34);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0, 176, 80, 0.24), inset 0 1px rgba(255, 255, 255, 0.22);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  letter-spacing: 0.015em;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.btn-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 22%, rgba(255, 255, 255, 0.18) 46%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 550ms ease;
}

.btn-cta:hover {
  background: linear-gradient(135deg, #11c85c, #079443);
  box-shadow: 0 18px 44px rgba(0, 176, 80, 0.34), inset 0 1px rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.btn-cta:hover::after {
  transform: translateX(120%);
}

.btn-cta:focus-visible,
.carousel-arrows button:focus-visible,
.hero__video:focus-visible,
.accordion summary:focus-visible {
  outline: 3px solid rgba(106, 165, 255, 0.72);
  outline-offset: 4px;
}

.btn-cta small {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.trust-row {
  gap: 9px 24px;
  color: var(--text);
  font-size: 13px;
}

.trust-row svg {
  padding: 2px;
  fill: var(--green-bright);
  background: rgba(66, 233, 133, 0.1);
  border-radius: 50%;
}

.hero {
  min-height: 100svh;
  padding: 88px 20px 72px;
  background:
    radial-gradient(55rem 30rem at 50% -5%, rgba(48, 112, 255, 0.3), transparent 72%),
    radial-gradient(35rem 24rem at 100% 42%, rgba(0, 208, 112, 0.09), transparent 74%),
    linear-gradient(180deg, #080d1e 0%, #050814 100%);
}

.hero::before {
  height: 100%;
  opacity: 0.55;
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
}

.hero::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 16%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(106, 165, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(57, 125, 255, 0.16);
  pointer-events: none;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 14px;
  color: #bcd3ff;
  background: rgba(72, 123, 224, 0.1);
  border: 1px solid rgba(106, 165, 255, 0.22);
  border-radius: 999px;
  font-family: "Fira Code", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__kicker span {
  width: 7px;
  height: 7px;
  background: var(--green-bright);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--green-bright);
}

.hero__title {
  max-width: 980px;
  font-size: clamp(44px, 6.2vw, 76px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.02;
  text-wrap: balance;
}

.hero__title .blue {
  color: #77adff;
  text-shadow: 0 8px 40px rgba(57, 125, 255, 0.24);
}

.hero__copy {
  max-width: 760px;
  margin-top: 26px;
  color: var(--text);
  font-size: clamp(16px, 1.65vw, 20px);
  line-height: 1.6;
  text-wrap: balance;
}

.hero__copy strong {
  color: var(--white);
  font-weight: 700;
}

.hero__note {
  margin-top: 8px;
  color: var(--green-bright);
  font-family: "Fira Code", monospace;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.hero__video {
  width: min(100%, 840px);
  max-width: none;
  margin: 38px auto 26px;
  padding: 0;
  border: 1px solid rgba(106, 165, 255, 0.36);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48), 0 0 0 8px rgba(68, 117, 215, 0.055);
}

.hero .btn-wrap {
  margin: 0 0 18px;
}

.hero__proof {
  flex-direction: row;
  justify-content: center;
  gap: 14px;
  margin: 34px 0 10px;
}

.avatar-row img {
  width: 42px;
  height: 42px;
  border: 2px solid #091020;
}

.rating-score::after {
  content: " from working mechanics";
  color: var(--text-dim);
}

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

.stat {
  min-width: 0;
  padding: 22px 18px;
  background: linear-gradient(180deg, rgba(21, 40, 76, 0.74), rgba(8, 15, 30, 0.84));
  border-color: rgba(106, 165, 255, 0.16);
  border-radius: 16px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.stat__number {
  color: #75aaff;
  font-size: clamp(27px, 3vw, 37px);
  font-weight: 750;
  letter-spacing: -0.05em;
}

.stat__label {
  color: var(--text-dim);
  font-family: "Fira Code", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.proof-carousel-section {
  padding: 72px 20px;
  background: #070b17;
  border-color: rgba(106, 165, 255, 0.1);
}

.proof-card,
.testimonial-card,
.feature-card {
  background: linear-gradient(145deg, rgba(16, 27, 51, 0.96), rgba(9, 16, 31, 0.96));
  border-color: rgba(106, 165, 255, 0.16);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035), var(--shadow-sm);
}

.proof-card {
  min-height: 310px;
  padding: 34px;
}

.verified-badge {
  width: max-content;
  padding: 0;
  color: var(--white);
  background: none;
  border: 0;
  border-radius: 0;
  font-family: "Inter", "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.verified-badge svg {
  display: none;
}

.verified-badge::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: url("images/verified-original.svg") center / contain no-repeat;
}

.carousel-arrows button {
  width: 44px;
  height: 44px;
  border-color: rgba(106, 165, 255, 0.24);
  background: rgba(15, 25, 47, 0.8);
}

.steps {
  gap: 28px;
  counter-reset: step;
}

.step,
.step:nth-child(even) {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 48px;
  min-height: 380px;
  padding: 36px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 25, 47, 0.86), rgba(8, 14, 28, 0.92));
  border: 1px solid rgba(106, 165, 255, 0.14);
  border-radius: 26px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.step:nth-child(even) .step__text {
  order: 2;
}

.step:nth-child(even) .step__image {
  order: 1;
}

.step__text {
  align-self: center;
}

.step__text h3 {
  font-size: 30px;
  letter-spacing: -0.035em;
}

.step__text p {
  color: var(--text-dim);
  line-height: 1.7;
}

.step__image {
  align-self: center;
}

.step__image img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.3);
}

.note-box {
  max-width: 720px;
  padding: 26px 30px;
  background: rgba(255, 209, 102, 0.055);
  border: 1px solid rgba(255, 209, 102, 0.18);
  border-radius: 18px;
}

.note-box p {
  margin-block: 0 8px;
}

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

.feature-card {
  position: relative;
  min-height: 240px;
  padding: 28px;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 100px;
  height: 100px;
  background: rgba(57, 125, 255, 0.12);
  border-radius: 50%;
  filter: blur(26px);
}

.feature-card:hover {
  border-color: rgba(106, 165, 255, 0.38);
  transform: translateY(-4px);
}

.feature-card svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  color: #8db9ff;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: rgba(57, 125, 255, 0.12);
  border: 1px solid rgba(106, 165, 255, 0.17);
  border-radius: 11px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 750;
}

.feature-card p {
  color: var(--text-dim);
  line-height: 1.65;
}

.compare {
  gap: 18px;
  max-width: 1050px;
  margin-inline: auto;
}

.compare-card {
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.compare-card--old {
  color: var(--text);
  background: #111722;
}

.compare-card--old h3,
.compare-card--old li {
  color: var(--text);
}

.compare-card--old li svg {
  fill: #ff7b7b;
}

.compare-card--new {
  background: linear-gradient(145deg, #173d7b 0%, #0c2348 100%);
  border-color: rgba(118, 173, 255, 0.38);
  transform: translateY(-12px);
}

.compare-card h3 {
  font-size: 25px;
  font-weight: 800;
}

.compare-card li {
  gap: 14px;
  color: #dbe8ff;
  font-size: 15px;
  line-height: 1.55;
}

.accordion {
  gap: 10px;
}

.accordion details {
  background: rgba(13, 21, 40, 0.76);
  border-color: rgba(106, 165, 255, 0.14);
  border-radius: 14px;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.accordion details[open] {
  background: rgba(16, 28, 53, 0.94);
  border-color: rgba(106, 165, 255, 0.34);
}

.accordion summary {
  padding: 21px 24px;
  font-size: 17px;
  font-weight: 700;
}

.accordion-body {
  padding: 0 24px 24px;
  color: var(--text-dim);
  line-height: 1.8;
}

.story {
  position: relative;
  padding: 110px 0;
  background:
    linear-gradient(90deg, rgba(57, 125, 255, 0.1), transparent 25%, transparent 75%, rgba(57, 125, 255, 0.08)),
    #070b17;
  border-color: rgba(106, 165, 255, 0.12);
}

.story .container {
  max-width: 800px;
}

.story h2 {
  margin-bottom: 36px;
  font-size: clamp(36px, 4.5vw, 54px);
  letter-spacing: -0.05em;
}

.story p {
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.8;
}

.testimonial-grid {
  gap: 16px;
}

.testimonial-card {
  min-height: 340px;
  padding: 28px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.testimonial-card:hover {
  border-color: rgba(106, 165, 255, 0.32);
  transform: translateY(-3px);
}

.testimonial-card p {
  color: var(--text-dim);
  line-height: 1.65;
}

.review-meta {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.proof-card .review-meta {
  order: 0;
}

.review-stars {
  display: block;
  width: 68px;
  height: 11px;
  flex: 0 0 68px;
  overflow: hidden;
  color: transparent;
  background: url("images/stars-original.svg") center / contain no-repeat;
  filter: none;
}

.review-stars > span {
  visibility: hidden;
}

.reviewer strong {
  color: var(--white);
  font-size: 16px;
  font-weight: 750;
}

.reviewer span {
  color: var(--text-muted);
  font-size: 12px;
}

/* Light social-proof section */
.proof-carousel-section {
  background: #ffffff;
  border-color: #e6ebf2;
}

.proof-carousel-section .proof-card {
  background: #ffffff;
  border-color: #e3e8ef;
  box-shadow: 0 16px 42px rgba(16, 24, 40, 0.08);
}

.proof-carousel-section .proof-card p {
  color: #475467;
}

.proof-carousel-section .reviewer strong {
  color: #101828;
}

.proof-carousel-section .reviewer span {
  color: #667085;
}

.proof-carousel-section .verified-badge {
  color: #344054;
}

.proof-carousel-section .carousel-arrows button {
  color: #101828;
  background: #f8fafc;
  border-color: #d8e0eb;
}

.proof-carousel-section .carousel-arrows button:hover {
  background: #eef3f9;
}

.proof-carousel-section .carousel-arrows svg {
  fill: #101828;
}

.section--testimonials {
  color: #111827;
  background: #ffffff;
  border-block: 1px solid #e6ebf2;
}

.section--testimonials .section-head h2 {
  color: #101828;
}

.section--testimonials .section-head p {
  color: #667085;
}

.section--testimonials .testimonial-card {
  background: #ffffff;
  border-color: #e3e8ef;
  box-shadow: 0 16px 42px rgba(16, 24, 40, 0.08);
}

.section--testimonials .testimonial-card:hover {
  border-color: #b8c8e2;
  box-shadow: 0 20px 48px rgba(16, 24, 40, 0.12);
}

.section--testimonials .testimonial-card p {
  color: #475467;
}

.section--testimonials .reviewer strong {
  color: #101828;
}

.section--testimonials .reviewer span {
  color: #667085;
}

.section--testimonials .verified-badge {
  color: #344054;
}

.offer-layout {
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  gap: 48px;
  align-items: start;
}

.offer-image {
  position: sticky;
  top: 28px;
  padding-top: 80px;
}

.offer-image img {
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.46));
}

.offer-card {
  position: relative;
  padding: 44px;
  background:
    radial-gradient(circle at 100% 0%, rgba(57, 125, 255, 0.18), transparent 36%),
    linear-gradient(145deg, #111d36, #0a1224);
  border-color: rgba(106, 165, 255, 0.3);
  box-shadow: var(--shadow-lg), inset 0 1px rgba(255, 255, 255, 0.05);
}

.offer-card::before {
  content: "BEST VALUE";
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 7px 14px;
  color: #07130d;
  background: var(--green-bright);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(66, 233, 133, 0.25);
  font-family: "Fira Code", monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  transform: translateX(-50%);
}

.offer-card > p:first-child {
  margin-top: 10px;
  font-size: 21px;
  font-weight: 800;
}

.offer-list {
  gap: 15px;
}

.offer-list li {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  font-size: 14px;
}

.offer-list li > svg {
  width: 22px;
  height: 22px;
  padding: 4px;
  background: rgba(66, 233, 133, 0.1);
  border-radius: 50%;
}

.offer-list b {
  font-size: 15px;
}

.offer-card .price {
  margin: 8px 0 18px;
  color: var(--green-bright);
  font-size: clamp(76px, 9vw, 108px);
  font-weight: 800;
  letter-spacing: -0.075em;
  text-shadow: 0 16px 44px rgba(66, 233, 133, 0.18);
}

.compare-price,
.license-label {
  margin-bottom: 0 !important;
}

.guarantee {
  gap: 54px;
  padding: 56px 64px;
  background:
    radial-gradient(circle at 0% 50%, rgba(66, 233, 133, 0.12), transparent 30%),
    linear-gradient(145deg, #101c2c, #0b1422);
  border: 1px solid rgba(66, 233, 133, 0.18);
  box-shadow: var(--shadow-lg);
}

.guarantee img {
  width: 190px;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.3));
}

.guarantee h3,
.guarantee p {
  color: var(--white);
}

.guarantee h3 {
  font-size: 27px;
  letter-spacing: -0.03em;
}

.guarantee p {
  color: var(--text);
  font-size: 15px;
}

.urgency {
  padding-block: 100px;
  background:
    radial-gradient(circle at 50% 50%, rgba(66, 233, 133, 0.1), transparent 28rem),
    #050814;
}

.urgency h2 {
  font-size: clamp(36px, 5vw, 54px);
  letter-spacing: -0.045em;
}

.urgency img {
  width: 100%;
  max-width: 760px;
  border: 0;
  border-radius: 0;
  filter: drop-shadow(0 30px 38px rgba(0, 0, 0, 0.42));
}

.section--faq .accordion {
  max-width: 880px;
}

.site-footer {
  padding: 44px 20px;
  background: #03050c;
  border-color: rgba(106, 165, 255, 0.12);
}

@media (max-width: 1024px) {
  .section {
    padding-block: 88px;
  }

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

  .offer-layout {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-inline: auto;
  }

  .offer-image {
    position: static;
    max-width: 620px;
    margin-inline: auto;
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .container {
    padding-inline: 18px;
  }

  .section {
    padding-block: 68px;
  }

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

  .section-head::before {
    margin-bottom: 10px;
  }

  .section-head h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .hero {
    min-height: auto;
    padding: 48px 0 46px;
  }

  .hero__kicker {
    margin-bottom: 18px;
    padding: 7px 11px;
    font-size: 9px;
  }

  .hero__title {
    font-size: clamp(38px, 11vw, 52px);
    letter-spacing: -0.055em;
  }

  .hero__copy {
    margin-top: 22px;
  }

  .hero__video {
    margin-block: 30px 24px;
    border-radius: 14px;
  }

  .btn-cta {
    width: 100%;
    min-width: 0;
    padding: 18px 20px;
    font-size: 16px;
  }

  .hero__proof {
    gap: 10px;
  }

  .rating-score::after {
    content: " mechanics";
  }

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

  .stat {
    padding: 19px 10px;
  }

  .proof-carousel-section {
    padding: 52px 18px;
  }

  .proof-card {
    min-height: 360px;
    padding: 25px;
  }

  .step,
  .step:nth-child(even) {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    min-height: 0;
    padding: 24px;
  }

  .step:nth-child(even) .step__text,
  .step:nth-child(even) .step__image {
    order: initial;
  }

  .step__text h3 {
    font-size: 25px;
  }

  .note-box {
    margin-top: 34px;
    padding: 22px 18px;
  }

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

  .feature-card,
  .testimonial-card {
    min-height: 0;
  }

  .compare {
    gap: 14px;
  }

  .compare-card {
    padding: 28px 24px;
  }

  .compare-card--new {
    transform: none;
  }

  .story {
    padding-block: 72px;
  }

  .offer-card {
    padding: 36px 22px 26px;
  }

  .offer-card .price {
    font-size: 72px;
  }

  .guarantee {
    gap: 28px;
    padding: 34px 22px;
  }

  .guarantee img {
    width: 150px;
  }

  .guarantee h3 {
    font-size: 24px;
  }

  .accordion summary {
    padding: 18px;
    font-size: 15px;
  }

  .accordion-body {
    padding: 0 18px 20px;
    font-size: 14px;
  }

  .urgency {
    padding-block: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
