:root {
  --black: #050505;
  --white: #ffffff;
  --cream: #f7f2e8;
  --orange: #ff5a1f;
  --dark-gray: #1c1c1c;
  --green: #065f46;
  --muted: #bdbdbd;
  --card: rgba(20, 20, 20, 0.84);
  --border: rgba(255, 255, 255, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.45;
}

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1200px 420px at 50% 88%, rgba(255, 90, 31, 0.26), rgba(0, 0, 0, 0)),
    radial-gradient(620px 240px at 50% 12%, rgba(255, 90, 31, 0.14), rgba(0, 0, 0, 0)),
    linear-gradient(180deg, #090909 0%, #050505 70%);
}

.wrap {
  width: min(1200px, calc(100% - 1.4rem));
  margin: 0.9rem auto 2.4rem;
}

.wrap.narrow {
  max-width: 760px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
}

.logo {
  color: var(--white);
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo span {
  color: var(--orange);
}

.topnav {
  display: flex;
  gap: 1.7rem;
}

.topnav a {
  color: #f2f2f2;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.9;
}

.topnav a:hover {
  color: var(--orange);
}

.top-cta {
  min-width: 190px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.hero {
  text-align: center;
  margin-top: 1rem;
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0.9rem auto 0;
  max-width: 950px;
  font-size: clamp(2.3rem, 8vw, 6.1rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  font-weight: 900;
}

.hero h1 span {
  color: var(--orange);
}

.sub {
  margin: 0.9rem auto 0;
  font-size: clamp(1rem, 2vw, 1.9rem);
  color: #e1e1e1;
}

.offer-grid {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.offer-card {
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.95), rgba(10, 10, 10, 0.96));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.25rem;
  text-align: left;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.main-offer {
  border-color: rgba(255, 90, 31, 0.72);
  box-shadow: 0 16px 42px rgba(255, 90, 31, 0.17);
}

.yearly-offer {
  position: relative;
}

.offer-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f5f5f5;
  font-size: 0.82rem;
  font-weight: 700;
}

.offer-tag {
  position: absolute;
  top: 0.95rem;
  right: 0.95rem;
  margin: 0;
  background: var(--green);
  color: var(--white);
  border-radius: 999px;
  padding: 0.24rem 0.52rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
}

.offer-price {
  margin: 0.45rem 0 0;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.95;
  font-weight: 800;
}

.offer-price span {
  font-size: 0.45em;
  color: var(--orange);
  margin-left: 0.12rem;
}

.offer-bill {
  margin: 0.45rem 0 0.7rem;
  color: #c8c8c8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}

.offer-list {
  margin: 0 0 1rem;
  padding-left: 1rem;
}

.offer-list li {
  margin-bottom: 0.38rem;
  color: #efefef;
}

.trust-row {
  margin: 1rem auto 0;
  max-width: 980px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(20, 20, 20, 0.75);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4rem;
  padding: 0.76rem;
}

.trust-row span {
  font-weight: 600;
  color: #e6e6e6;
}

.section {
  margin-top: 1.35rem;
}

.section > h2 {
  margin-bottom: 0.82rem;
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
}

.transformations-sub {
  margin: -0.2rem 0 0.8rem;
  color: #d3d3d3;
}

.transformations-frame {
  padding: 0.5rem;
  overflow: hidden;
}

.transformations-image {
  display: block;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.grid {
  display: grid;
  gap: 0.75rem;
}

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

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

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

.card,
.mini {
  background: rgba(19, 19, 19, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.mini h3 {
  font-size: 1.03rem;
}

.feature p,
.faq-item p,
.footer p {
  margin: 0.52rem 0 0;
  color: #dddddd;
}

.pricing-card {
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(6, 95, 70, 0.85);
  box-shadow: 0 16px 30px rgba(6, 95, 70, 0.21);
}

.price {
  margin: 0.45rem 0 0.65rem;
  font-size: 2.3rem;
  font-weight: 800;
}

.price span {
  font-size: 0.44em;
  color: var(--orange);
}

.tag {
  position: absolute;
  top: 0.95rem;
  right: 0.95rem;
  background: var(--green);
  color: var(--white);
  border-radius: 999px;
  padding: 0.25rem 0.56rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
}

.save {
  margin: 0;
  color: #7ce0be;
  font-weight: 700;
}

.effective {
  margin: 0.12rem 0 0.8rem;
  color: #d0d0d0;
}

ul {
  margin: 0 0 0.85rem;
  padding-left: 1.05rem;
}

li {
  margin-bottom: 0.35rem;
}

.steps {
  margin: 0;
  padding-left: 1.2rem;
}

.steps li {
  margin-bottom: 0.48rem;
  font-weight: 500;
}

.faq {
  display: grid;
  gap: 0.74rem;
}

.footer-links {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 700;
}

.footer a:hover {
  text-decoration: underline;
}

button,
.btn-link {
  width: 100%;
  border: 0;
  border-radius: 11px;
  cursor: pointer;
  text-decoration: none;
  padding: 0.86rem 1rem;
  background: var(--orange);
  color: var(--black);
  font-weight: 800;
  font-size: 1rem;
  transition: transform 120ms ease, filter 120ms ease;
}

button:hover,
.btn-link:hover {
  filter: brightness(0.94);
  transform: translateY(-1px);
}

.center {
  text-align: center;
  padding: 2.2rem 1rem;
}

.micro {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .topnav {
    display: none;
  }

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

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

@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 0.9rem);
    margin-top: 0.6rem;
  }

  .topbar {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .logo {
    font-size: 1.6rem;
  }

  .top-cta {
    width: 100%;
  }

  .offer-grid,
  .grid.two,
  .grid.four,
  .vault-grid,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    line-height: 0.98;
  }
}
