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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 90% 25%, rgba(130, 18, 18, 0.08), transparent 28%),
    linear-gradient(180deg, #020403 0%, #050706 45%, #010101 100%);
  color: #f5f5f5;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  opacity: 0.28;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.82) 75%);
  pointer-events: none;
  z-index: -1;
}

.page {
  width: min(100% - 22px, 1180px);
  margin: 0 auto;
}

.nav {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(5, 8, 7, 0.82);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 35px rgba(39, 255, 83, 0.06);
  position: sticky;
  top: 10px;
  z-index: 50;
}

.brand {
  display: flex;
  align-items: center;
}
.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.brand-xxt {
  color: #ffffff;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
}

.brand-crew {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.brand-sub {
  color: #a5a5a5;
  font-size: 10px;
  letter-spacing: 2px;
  margin-top: 4px;
  text-transform: uppercase;
}
.brand-link {
  text-decoration: none;
  color: inherit;
}

.brand-link:visited,
.brand-link:hover,
.brand-link:active {
  text-decoration: none;
  color: inherit;
}

.brand-link *,
.brand-link *:visited,
.brand-link *:hover,
.brand-link *:active {
  text-decoration: none;
  color: inherit;
}
.logo-image {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
  transition: 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.04);
}

.mobile-menu {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(145deg, #0c120e, #050706);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(57, 211, 83, 0.13);
}

.mobile-menu.active {
  border-color: rgba(57, 211, 83, 0.5);
  box-shadow: 0 0 24px rgba(57, 211, 83, 0.24);
}

.nav-links {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 12px;
  right: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(6, 8, 7, 0.96);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 42px rgba(0,0,0,0.55);
  flex-direction: column;
  gap: 6px;
  text-align: left;
  z-index: 60;
}

.nav-links.active {
  display: flex;
}

.nav-links a {
  color: #d8d8d8;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 14px 16px;
  border-radius: 12px;
  transition: 0.25s;
  background: rgba(255,255,255,0.025);
}

.nav-links a:hover {
  color: #fff;
  background: rgba(57,211,83,0.08);
}

.telegram-btn {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  position: relative;
  padding: 54px 0 30px;
}
.hero-clean {
    position: relative;
    overflow: hidden;
}

.hero-clean::after {
    content: "";
    position: absolute;

    inset: 0;

    background-image: url("assets/images/hero-bull.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100%;

    opacity: 0.12;

    pointer-events: none;

    z-index: 0;
}
.eyebrow {
  color: #39d353;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.6px;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(43px, 14vw, 66px);
  line-height: 0.94;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow: 0 0 20px rgba(255,255,255,0.06);
}

h1 .green {
  color: #39d353;
  text-shadow: 0 0 22px rgba(57,211,83,0.22);
}

.subtitle {
  color: #b9b9b9;
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 28px;
}

.subtitle span {
  color: #fff;
  font-weight: 700;
}

.actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.xxt-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  min-height: 82px;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(145deg, rgba(28,31,30,0.96), rgba(4,5,5,0.98));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -20px 35px rgba(0,0,0,0.35),
    0 18px 35px rgba(0,0,0,0.45),
    0 0 18px rgba(57, 211, 83, 0.11);
  transition: 0.25s ease;
  overflow: hidden;
}

.xxt-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-120%);
  transition: 0.55s;
}

.xxt-button:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 211, 83, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 24px 45px rgba(0,0,0,0.55),
    0 0 28px rgba(57, 211, 83, 0.22);
}

.xxt-button:hover::after {
  transform: translateX(120%);
}

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(57,211,83,0.45);
  display: grid;
  place-items: center;
  color: #39d353;
  font-size: 22px;
  box-shadow: 0 0 18px rgba(57,211,83,0.16);
  flex: 0 0 auto;
}

.btn-title {
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
}

.btn-sub {
  color: #9e9e9e;
  font-size: 12px;
  margin-top: 4px;
  text-transform: uppercase;
}

.trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  color: #8d8d8d;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust strong {
  display: block;
  color: #e9e9e9;
  font-size: 15px;
  margin-top: 7px;
}

.visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.bull {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(57,211,83,0.16), transparent 34%),
    radial-gradient(circle at center, rgba(255,255,255,0.04), transparent 62%);
  filter: blur(1px);
  opacity: 0.75;
}

.bull::before {
  content: "♉";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 180px;
  color: rgba(255,255,255,0.08);
  text-shadow: 0 0 35px rgba(57,211,83,0.16);
}

.book-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  z-index: 3;
  width: 100%;
}

.book {
  width: min(220px, 72vw);
  height: 320px;
  border-radius: 8px 18px 18px 8px;
  background: linear-gradient(90deg, #090909 0%, #171a17 12%, #050505 100%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    28px 32px 60px rgba(0,0,0,0.65),
    0 0 45px rgba(57,211,83,0.14);
  transform: perspective(900px) rotateY(-13deg) rotateX(3deg);
  position: relative;
  overflow: hidden;
  animation: floatBook 5s ease-in-out infinite;
}

@keyframes floatBook {
  0%, 100% { transform: perspective(900px) rotateY(-13deg) rotateX(3deg) translateY(0); }
  50% { transform: perspective(900px) rotateY(-13deg) rotateX(3deg) translateY(-10px); }
}

.book::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 65%, rgba(57,211,83,0.18), transparent 30%),
    linear-gradient(160deg, transparent 42%, rgba(57,211,83,0.15) 43%, transparent 70%);
}

.book::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 100%;
  background: linear-gradient(180deg, #1c1f1d, #050505);
  border-right: 1px solid rgba(255,255,255,0.12);
}

.book-title {
  position: absolute;
  top: 54px;
  left: 34px;
  right: 22px;
  font-size: 29px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

.book-title span {
  color: #39d353;
  display: block;
  font-size: 29px;
}

.book-sub {
  position: absolute;
  left: 36px;
  right: 22px;
  bottom: 48px;
  color: #bcbcbc;
  font-size: 10px;
  line-height: 1.5;
  text-transform: uppercase;
  z-index: 2;
}

.info-card {
  width: min(100%, 360px);
  padding: 22px;
  border-radius: 18px;
  background: rgba(8,10,9,0.72);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.42);
}

.info-card ul {
  list-style: none;
  display: grid;
  gap: 15px;
  font-size: 14px;
  color: #dfdfdf;
}

.info-card li::before {
  content: "✦";
  color: #39d353;
  margin-right: 10px;
}

.price {
  margin-top: 22px;
  text-align: center;
}

.price small {
  color: #39d353;
  text-transform: uppercase;
  font-size: 11px;
}

.price strong {
  display: block;
  font-size: 34px;
  margin: 5px 0 14px;
}

.section {
  padding: 54px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 32px;
}

.section-title small {
  color: #39d353;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 11px;
}

.section-title h2 {
  font-size: clamp(34px, 11vw, 54px);
  text-transform: uppercase;
  margin-top: 12px;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.card {
  min-height: 210px;
  padding: 26px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(22,25,23,0.86), rgba(3,4,4,0.92));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  text-align: center;
  transition: 0.25s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(57,211,83,0.34);
  box-shadow: 0 22px 50px rgba(0,0,0,0.5), 0 0 26px rgba(57,211,83,0.10);
}

.card-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #39d353;
  font-size: 28px;
  background: rgba(57,211,83,0.06);
  border: 1px solid rgba(57,211,83,0.18);
  box-shadow: 0 0 24px rgba(57,211,83,0.12);
}

.card h3 {
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.card p {
  color: #a7a7a7;
  font-size: 14px;
  line-height: 1.5;
}

.preview {
  text-align: center;
  margin-top: 34px;
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 30px;
  min-width: 220px;
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(145deg, rgba(20,23,21,0.9), rgba(4,5,5,0.98));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 0 22px rgba(57,211,83,0.12);
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.25s;
}

.ghost-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(57,211,83,0.45);
  box-shadow: 0 0 32px rgba(57,211,83,0.22);
}

footer {
  padding: 42px 0;
  color: #777;
  font-size: 12px;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
}

@media (min-width: 700px) {
  .page {
    width: min(100% - 40px, 1180px);
  }

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

  .trust {
    grid-template-columns: repeat(2, max-content);
    gap: 34px;
  }

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

@media (min-width: 981px) {
  .nav {
    margin-top: 18px;
    padding: 18px 24px;
  }

  .logo-image {
    width: 78px;
    height: 78px;
  }

  .mobile-menu {
    display: none;
  }

  .nav-links {
    display: flex;
    position: static;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    flex-direction: row;
    gap: 34px;
    text-align: left;
  }

  .nav-links a {
    padding: 0;
    font-size: 13px;
  }

  .nav-links a:hover {
    background: transparent;
  }

  .telegram-btn {
    display: inline-flex;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    padding: 15px 28px;
    border-radius: 12px;
    background: linear-gradient(145deg, #0c120e, #050706);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.12),
      0 0 22px rgba(57, 211, 83, 0.18);
    transition: 0.25s;
  }

  .telegram-btn:hover {
    transform: translateY(-2px);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.16),
      0 0 28px rgba(57, 211, 83, 0.28);
  }

  .hero {
    min-height: 760px;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 50px;
    padding: 80px 0 40px;
  }

  .hero::before {
    top: 42%;
    font-size: clamp(170px, 28vw, 430px);
    letter-spacing: -18px;
  }

  .eyebrow {
    font-size: 13px;
    margin-bottom: 22px;
  }

  h1 {
    font-size: clamp(70px, 7vw, 96px);
    letter-spacing: -4px;
    margin-bottom: 28px;
  }

  .subtitle {
    font-size: 18px;
    margin-bottom: 34px;
  }

  .actions {
    max-width: 560px;
    gap: 18px;
    margin-bottom: 34px;
  }

  .visual {
    min-height: 620px;
  }

  .bull {
    width: 520px;
    height: 520px;
  }

  .bull::before {
    font-size: 270px;
  }

  .book-wrap {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }

  .book {
    width: 250px;
    height: 360px;
    transform: perspective(900px) rotateY(-17deg) rotateX(3deg);
  }

  @keyframes floatBook {
    0%, 100% { transform: perspective(900px) rotateY(-17deg) rotateX(3deg) translateY(0); }
    50% { transform: perspective(900px) rotateY(-17deg) rotateX(3deg) translateY(-12px); }
  }

  .book-title {
    top: 60px;
    font-size: 34px;
  }

  .book-title span {
    font-size: 34px;
  }

  .info-card {
    width: 230px;
  }

  .section {
    padding: 45px 0;
  }

  .cards {
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }
}
.bible-image {
  width: min(280px, 78vw);
  max-width: 100%;
  filter: drop-shadow(0 28px 45px rgba(0,0,0,0.65))
          drop-shadow(0 0 28px rgba(57,211,83,0.18));
  transition: 0.3s ease;
}

.starter-image {
  width: min(210px, 62vw);
  max-width: 100%;
  filter: drop-shadow(0 22px 36px rgba(0,0,0,0.55))
          drop-shadow(0 0 20px rgba(57,211,83,0.12));
  transition: 0.3s ease;
}

.bible-image:hover,
.starter-image:hover {
  transform: translateY(-6px) scale(1.02);
}

.disabled-button {
  opacity: 0.72;
  cursor: not-allowed;
  pointer-events: none;
}

.eyebrow {
  font-weight: 800;
}

.subtitle {
  color: #d0d0d0;
}
/* ===== XXT LANDING V2 PRODUCT SECTIONS ===== */

.hero-clean {
  min-height: auto;
  display: block;
  padding: 48px 0 8px;
}

.hero-clean .hero-content {
  max-width: 760px;
}

.trust-single {
  margin: 22px 0 26px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.trust-single > div {
  width: 100%;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(8, 10, 9, 0.68);
  border: 1px solid rgba(255,255,255,0.10);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 22px;
}

.product-card,
.access-card {
  border-radius: 26px;
  padding: 28px 22px;
  background: linear-gradient(180deg, rgba(14,16,15,0.92), rgba(3,4,4,0.96));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 55px rgba(0,0,0,0.48);
}

.product-image-wrap {
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}

.product-image {
  display: block;
  width: min(270px, 72vw);
  max-width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 28px 45px rgba(0,0,0,0.66));
}

.bible-product-image {
  width: min(300px, 76vw);
}

.product-label {
  display: block;
  color: #9c9c9c;
  font-size: 14px;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: clamp(27px, 7vw, 38px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.product-card p {
  color: #d7d7d7;
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 18px;
}

.product-list,
.access-list {
  list-style: none;
  display: grid;
  gap: 13px;
  margin: 0 0 26px;
  padding: 0;
}

.product-list li,
.access-list li {
  position: relative;
  padding-left: 22px;
  color: #ededed;
  font-size: 16px;
  line-height: 1.45;
}

.product-list li::before,
.access-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #39d353;
  font-weight: 900;
}

.product-btn {
  width: 100%;
  min-width: 0;
}

.access-section {
  padding-top: 34px;
}

.access-card {
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .product-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 42px;
    padding: 42px;
  }

  .product-image-wrap {
    margin-bottom: 0;
  }

  .product-btn {
    max-width: 420px;
  }

  .access-card {
    padding: 30px 36px;
  }
}
/* ===== FOUNDER ===== */

.founder-section {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.founder-message {
  max-width: 760px;
  margin: 0 auto;
}

.founder-message p {
  color: #d2d2d2;
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 16px;
}

.signature {
  color: #ffffff;
  font-weight: 700;
  margin-top: 10px;
}

/* ===== SUPPORT ===== */

.support-section {
  text-align: center;
}

.support-content {
  max-width: 700px;
  margin: 0 auto;
}

.support-content p {
  color: #d0d0d0;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.support-btn {
  min-width: 280px;
}

/* ===== FOOTER ===== */

.footer {
  text-align: center;
  padding: 70px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 50px;
}

.footer h3 {
  font-size: 24px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.footer p {
  color: #b8b8b8;
  margin-bottom: 10px;
}

.footer-disclaimer {
  max-width: 700px;
  margin: 22px auto 0;
  color: #7f7f7f;
  line-height: 1.7;
  font-size: 13px;
}
/* ===== XXT PREMIUM POLISH ===== */

.product-card,
.access-card,
.support-content,
.founder-message {
  transition: all 0.3s ease;
}

.product-card:hover,
.access-card:hover {
  transform: translateY(-2px);
  border-color: rgba(57,211,83,0.22);
  box-shadow:
    0 28px 60px rgba(0,0,0,0.52),
    0 0 18px rgba(57,211,83,0.08);
}

.product-image,
.bible-product-image,
.bible-image,
.starter-image {
  transition: transform 0.3s ease;
}

.product-image:hover,
.bible-product-image:hover,
.bible-image:hover,
.starter-image:hover {
  transform: scale(1.025);
}

.ghost-btn,
.xxt-button {
  transition: all 0.3s ease;
}

.ghost-btn:hover,
.xxt-button:hover {
  transform: translateY(-2px);
}

.section-title h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  margin-top: 80px;
}

@media (max-width: 768px) {

  .product-card {
    padding: 24px 18px;
  }

  .product-list li {
    font-size: 15px;
  }

  .section-title h2 {
    font-size: clamp(28px, 8vw, 42px);
  }

  .support-btn {
    width: 100%;
    min-width: 0;
  }

}
/* ===== PREVIEW PAGE ===== */

.preview-hero {
  padding: 52px 0 24px;
}

.preview-product-section {
  padding: 42px 0;
}

.preview-product-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(14,16,15,0.92), rgba(3,4,4,0.96));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 55px rgba(0,0,0,0.48);
}

.preview-cover-wrap {
  display: grid;
  place-items: center;
}

.preview-cover {
  width: min(150px, 42vw);
  max-width: 100%;
  filter: drop-shadow(0 24px 38px rgba(0,0,0,0.62));
}

.bible-preview-cover {
  width: min(170px, 48vw);
}

.preview-text p {
  color: #d7d7d7;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.preview-screens-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 22px;
}

.preview-screen {
  min-height: 180px;
  border-radius: 20px;
  background: rgba(8,10,9,0.72);
  border: 1px solid rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
  color: #777;
  font-size: 13px;
  text-transform: uppercase;
}

@media (min-width: 900px) {
  .preview-product-card {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 34px;
    padding: 34px 40px;
  }

  .preview-screens-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ===== FAQ MODAL ===== */

.faq-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(10px);
  z-index: 9999;
  padding: 20px;
  overflow-y: auto;
}

.faq-modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-modal-content {
  width: min(900px, 100%);
  background: linear-gradient(
    180deg,
    rgba(14,16,15,0.97),
    rgba(3,4,4,0.99)
  );

  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;

  padding: 36px;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.65),
    0 0 25px rgba(57,211,83,0.08);

  position: relative;
}

.faq-modal-content h2 {
  font-size: 42px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 18px;
}

.faq-item p {
  color: #bfbfbf;
  line-height: 1.7;
}

.faq-close {
  position: absolute;
  right: 20px;
  top: 20px;

  width: 42px;
  height: 42px;

  border: none;
  border-radius: 12px;

  cursor: pointer;

  background: rgba(255,255,255,0.06);
  color: white;

  font-size: 18px;
}
