:root {
  --bg: #05060b;
  --bg2: #090d18;
  --card: rgba(255,255,255,.055);
  --card2: rgba(255,255,255,.085);
  --text: #f5f7fb;
  --muted: #a6adbd;
  --gold: #d9b76f;
  --blue: #49a8ff;
  --violet: #a855f7;
  --line: rgba(255,255,255,.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(73,168,255,.18), transparent 32%),
    radial-gradient(circle at 85% 0%, rgba(168,85,247,.18), transparent 28%),
    radial-gradient(circle at 55% 75%, rgba(217,183,111,.12), transparent 35%),
    linear-gradient(180deg, #03040a 0%, #080a12 45%, #03040a 100%);
  min-height: 100vh;
}

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  background: rgba(5,6,11,.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .2px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #070707;
  background: linear-gradient(135deg, var(--gold), #fff1b8);
  box-shadow: 0 0 30px rgba(217,183,111,.35);
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover {
  color: var(--text);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 34px;
  padding: 90px 6vw 60px;
  align-items: center;
}

.badge,
.eyebrow {
  display: inline-flex;
  width: fit-content;
  color: var(--gold);
  border: 1px solid rgba(217,183,111,.32);
  background: rgba(217,183,111,.08);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .4px;
}

.hero h1 {
  margin: 22px 0 18px;
  max-width: 880px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: .92;
  letter-spacing: -3px;
}

.hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 750;
}

.btn.primary {
  color: #05060b;
  background: linear-gradient(135deg, var(--gold), #fff0b0);
  box-shadow: 0 0 38px rgba(217,183,111,.24);
}

.btn.secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  color: #d8deec;
  font-size: 14px;
}

.hero-meta span {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.045);
  border-radius: 999px;
  padding: 9px 12px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 34px;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.035)),
    radial-gradient(circle at 70% 25%, rgba(73,168,255,.22), transparent 38%),
    radial-gradient(circle at 30% 80%, rgba(168,85,247,.22), transparent 36%);
  box-shadow: 0 28px 80px rgba(0,0,0,.46), inset 0 0 50px rgba(255,255,255,.035);
}

.orb {
  position: absolute;
  right: -80px;
  top: -70px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(217,183,111,.9), rgba(73,168,255,.35), transparent 68%);
  filter: blur(4px);
  opacity: .72;
}

.hero-card-top {
  color: var(--gold);
  font-weight: 750;
}

.hero-card h2 {
  position: relative;
  margin-top: 120px;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -1.5px;
}

.hero-card p,
.hero-card a {
  position: relative;
}

.hero-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold);
  font-weight: 800;
}

.section {
  padding: 40px 6vw 70px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 12px 0 0;
  font-size: clamp(32px, 5vw, 58px);
  letter-spacing: -2px;
}

.section-head p {
  max-width: 430px;
  color: var(--muted);
  line-height: 1.5;
}

.categories {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0 24px;
}

.cat {
  white-space: nowrap;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  color: #dfe5f2;
  padding: 12px 15px;
  border-radius: 999px;
  cursor: pointer;
  transition: .2s;
}

.cat.active,
.cat:hover {
  color: #05060b;
  background: linear-gradient(135deg, var(--gold), #fff0b0);
  border-color: transparent;
}

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

.product {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035)),
    rgba(255,255,255,.03);
  min-height: 360px;
  padding: 22px;
  box-shadow: 0 18px 55px rgba(0,0,0,.28);
}

.product::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 80% 0%, rgba(73,168,255,.22), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(168,85,247,.15), transparent 28%);
  pointer-events: none;
}

.product-top,
.product-body,
.product-actions {
  position: relative;
}

.product-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.product-icon {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}

.product-category {
  color: var(--gold);
  font-size: 12px;
  border: 1px solid rgba(217,183,111,.26);
  background: rgba(217,183,111,.07);
  padding: 7px 9px;
  border-radius: 999px;
}

.product h3 {
  margin: 24px 0 10px;
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -.7px;
}

.product p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 14px;
}

.specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0 22px;
}

.specs span {
  color: #dce3f2;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.045);
  padding: 8px 10px;
  border-radius: 999px;
}

.product-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

.product-actions a {
  flex: 1;
  min-width: 135px;
  text-align: center;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 750;
  font-size: 14px;
}

.tg {
  color: #05060b;
  background: linear-gradient(135deg, var(--gold), #fff0b0);
}

.channel {
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.055);
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 10px 6vw 80px;
}

.trust-item {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
  border-radius: 24px;
  padding: 22px;
}

.trust-item span {
  font-size: 28px;
}

.trust-item h3 {
  margin: 14px 0 8px;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 30px 6vw 90px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer b {
  color: var(--text);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--gold);
}

.float-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  color: #05060b;
  background: linear-gradient(135deg, var(--gold), #fff0b0);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 850;
  box-shadow: 0 12px 42px rgba(217,183,111,.28);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

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

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

  .nav {
    display: none;
  }
}

@media (max-width: 620px) {
  .header {
    padding: 16px 18px;
  }

  .hero,
  .section,
  .trust,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero-card {
    min-height: 330px;
    border-radius: 26px;
  }

  .hero-card h2 {
    margin-top: 90px;
    font-size: 30px;
  }

  .section-head {
    display: block;
  }

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

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

  .footer {
    display: block;
  }

  .float-btn {
    left: 18px;
    right: 18px;
    text-align: center;
  }
}

/* AppleDelta hero premium frame — step 2 */
.hero {
  border: 1px solid rgba(214, 177, 92, .18);
  box-shadow:
    0 0 0 1px rgba(82, 132, 255, .08),
    0 24px 80px rgba(0, 0, 0, .38),
    inset 0 1px 0 rgba(255, 255, 255, .06);
  background:
    linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
    rgba(7, 10, 18, .72);
  backdrop-filter: blur(18px);
}

/* AppleDelta CTA buttons polish — step 3 */
.btn,
.hero a {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.btn:hover,
.hero a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(214, 177, 92, .18);
}

/* AppleDelta hero top shine — step 4 */
.hero::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 177, 92, .75), rgba(82, 132, 255, .55), transparent);
  opacity: .9;
}

/* AppleDelta hero scale — step 5 */
.hero {
  padding: 72px 56px;
  gap: 44px;
}

.hero-content {
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(46px, 6vw, 78px);
  line-height: .94;
}

.hero p {
  max-width: 620px;
  font-size: 18px;
}

.hero-card {
  min-height: 440px;
  padding: 36px;
}

/* AppleDelta hero card premium — step 6 */
.hero-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(214,177,92,.18), transparent 34%),
    radial-gradient(circle at 80% 80%, rgba(82,132,255,.16), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -60px;
  top: -60px;
  border-radius: 50%;
  background: rgba(162, 88, 255, .18);
  filter: blur(16px);
}

/* AppleDelta header glass — step 7 */
.header {
  margin-top: 18px;
  padding: 16px 20px;
  border: 1px solid rgba(214, 177, 92, .14);
  border-radius: 24px;
  background: rgba(7, 10, 18, .62);
  backdrop-filter: blur(18px);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .06);
}

.header a {
  transition: color .18s ease, opacity .18s ease;
}

.header a:hover {
  color: #d6b15c;
  opacity: 1;
}

/* AppleDelta hero badges — step 8 */
.hero-meta span {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(214, 177, 92, .18);
  background: rgba(255, 255, 255, .045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.hero-meta span:first-child {
  color: #f2d48a;
  border-color: rgba(214, 177, 92, .34);
}


/* AppleDelta floating Telegram — step 10 */
.float-btn {
  border: 1px solid rgba(214, 177, 92, .28);
  background:
    linear-gradient(135deg, rgba(214,177,92,.22), rgba(82,132,255,.18)),
    rgba(7, 10, 18, .88);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, .42),
    0 0 28px rgba(82, 132, 255, .16);
  backdrop-filter: blur(16px);
}

.float-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, .52),
    0 0 38px rgba(214, 177, 92, .20);
}

/* AppleDelta anchor offset — step 11 */
html {
  scroll-padding-top: 130px;
}

.section,
#catalog {
  scroll-margin-top: 130px;
}

/* AppleDelta sticky header cleanup — step 12 */
.header {
  top: 12px;
  z-index: 50;
}

.section {
  padding-top: 92px;
}

@media (max-width: 760px) {
  .section {
    padding-top: 64px;
  }
}

/* AppleDelta floating Telegram light — step 13 */
.float-btn {
  color: #090b10;
  border: 1px solid rgba(255, 226, 140, .72);
  background:
    linear-gradient(135deg, #f4d77c, #fff0b3 48%, #d6b15c);
  box-shadow:
    0 18px 46px rgba(214, 177, 92, .26),
    0 0 32px rgba(255, 226, 140, .18);
}

.float-btn:hover {
  color: #090b10;
  transform: translateY(-3px);
  box-shadow:
    0 24px 60px rgba(214, 177, 92, .34),
    0 0 42px rgba(255, 226, 140, .26);
}




/* AppleDelta trust premium cards — step 17 */
.trust {
  gap: 18px;
}

.trust-item {
  border: 1px solid rgba(214, 177, 92, .14);
  background:
    linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.018)),
    rgba(7, 10, 18, .68);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, .30),
    inset 0 1px 0 rgba(255, 255, 255, .05);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.trust-item:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 177, 92, .32);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, .40),
    0 0 32px rgba(214, 177, 92, .10);
}

/* AppleDelta footer premium — step 18 */
.footer {
  margin-top: 56px;
  padding: 28px 32px;
  border: 1px solid rgba(214, 177, 92, .14);
  border-radius: 28px 28px 0 0;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    rgba(7, 10, 18, .74);
  box-shadow:
    0 -18px 54px rgba(0, 0, 0, .26),
    inset 0 1px 0 rgba(255, 255, 255, .05);
}

.footer b {
  color: #f2d48a;
}

.footer-links a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(214, 177, 92, .16);
  background: rgba(255, 255, 255, .04);
}

.footer-links a:hover {
  color: #f2d48a;
  border-color: rgba(214, 177, 92, .34);
}

/* AppleDelta footer buttons cleanup — step 19 */
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  text-align: center;
}

.footer-links a:first-child {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(214, 177, 92, .18);
}

.footer-links a:last-child {
  background: linear-gradient(135deg, #f4d77c, #fff0b3 48%, #d6b15c);
  color: #090b10;
  border: 1px solid rgba(255, 226, 140, .72);
}

/* AppleDelta product specs uniform — step 20 */
.specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  min-height: 82px;
}

.specs span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid rgba(214, 177, 92, .14);
  background: rgba(255, 255, 255, .045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045);
}

/* AppleDelta product action buttons — step 21 */
.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.product-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-actions a.tg {
  color: #090b10;
  border: 1px solid rgba(255, 226, 140, .72);
  background: linear-gradient(135deg, #f4d77c, #fff0b3 48%, #d6b15c);
  box-shadow: 0 14px 34px rgba(214, 177, 92, .18);
}

.product-actions a.channel {
  color: #f2d48a;
  border: 1px solid rgba(214, 177, 92, .18);
  background: rgba(255, 255, 255, .045);
}

.product-actions a:hover {
  transform: translateY(-2px);
}

/* AppleDelta floating button safe zone — step 22 */
@media (min-width: 900px) {
  .footer {
    padding-right: 260px;
  }

  .footer-links {
    justify-content: flex-end;
  }
}

@media (max-width: 760px) {
  .footer {
    padding-bottom: 96px;
  }

  .float-btn {
    right: 16px;
    bottom: 16px;
  }
}

/* AppleDelta pseudo-3D product icons — step 29 */
.product-icon {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  font-size: 34px;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,.30), rgba(255,255,255,.06) 32%, transparent 33%),
    linear-gradient(145deg, rgba(244, 215, 124, .16), rgba(82, 132, 255, .10) 52%, rgba(255,255,255,.03)),
    rgba(10, 14, 24, .92);
  border: 1px solid rgba(214, 177, 92, .18);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, .28),
    0 6px 18px rgba(82, 132, 255, .12),
    inset 0 1px 0 rgba(255, 255, 255, .18),
    inset 0 -10px 22px rgba(0, 0, 0, .20);
  transform: perspective(140px) rotateX(10deg) translateY(-1px);
}

.product-icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}

.product-icon::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: -10px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,0,0,.34), transparent 70%);
  filter: blur(4px);
  z-index: -1;
}

/* AppleDelta product cards premium polish — step 24 */
.product {
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.product:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 177, 92, .34);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, .38),
    0 0 34px rgba(73, 168, 255, .10),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}

.product:hover .product-icon {
  border-color: rgba(214, 177, 92, .32);
  box-shadow: 0 0 26px rgba(214, 177, 92, .10);
}

/* AppleDelta mobile premium polish — step 25 */
@media (max-width: 760px) {
  .header {
    left: 12px;
    right: 12px;
    top: 10px;
    padding: 10px 12px;
    gap: 10px;
    border-radius: 22px;
  }

  .logo span:last-child {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav {
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    white-space: nowrap;
    padding: 8px 10px;
    font-size: 12px;
  }

  .hero {
    padding-top: 96px;
    gap: 18px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .product {
    min-height: auto;
    padding: 18px;
    border-radius: 24px;
  }

  .product h3 {
    font-size: 20px;
  }

  .specs {
    min-height: auto;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .float-btn {
    left: 16px;
    right: 16px;
    bottom: 16px;
    justify-content: center;
    min-height: 54px;
  }

  .footer {
    padding-bottom: 112px;
  }
}

/* AppleDelta category filters premium polish — step 27 */
.categories {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.categories::-webkit-scrollbar {
  display: none;
}

.cat {
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045);
}

.cat:hover {
  transform: translateY(-1px);
  box-shadow:
    0 10px 26px rgba(214, 177, 92, .10),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}

.cat.active {
  box-shadow:
    0 14px 34px rgba(214, 177, 92, .22),
    0 0 26px rgba(255, 226, 140, .14);
}

/* AppleDelta mobile CTA spacing polish — step 28 */
@media (max-width: 760px) {
  .hero-actions {
    margin-bottom: 74px;
  }

  .float-btn {
    bottom: 10px;
    min-height: 50px;
    border-radius: 18px;
  }

  .footer {
    padding-bottom: 104px;
  }
}


/* AppleDelta FAQ and order polish — step 29 */
.faq-section {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 0%, rgba(214, 177, 92, .12), transparent 34%),
    radial-gradient(circle at 88% 20%, rgba(91, 106, 255, .10), transparent 28%),
    rgba(255, 255, 255, .035);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .30);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.faq-card {
  min-height: 170px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(8, 11, 18, .72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045);
}

.faq-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  letter-spacing: -.02em;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.order-strip {
  margin-top: 18px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 26px;
  border: 1px solid rgba(214, 177, 92, .18);
  background: linear-gradient(135deg, rgba(214, 177, 92, .13), rgba(92, 108, 255, .09));
}

.order-strip span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 6px;
}

.order-strip strong {
  display: block;
  font-size: 20px;
  letter-spacing: -.03em;
}

@media (max-width: 980px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-strip {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .faq-section {
    width: min(100% - 24px, 1180px);
    padding: 20px;
    border-radius: 28px;
  }

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

  .faq-card {
    min-height: auto;
  }

  .order-strip strong {
    font-size: 18px;
  }
}


/* AppleDelta premium live status strip — step 30 */
.status-strip {
  width: min(1180px, calc(100% - 32px));
  margin: -18px auto 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
  z-index: 3;
}

.status-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 2px 12px;
  align-items: center;
  min-height: 78px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .09);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025)),
    rgba(6, 8, 13, .72);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, .34),
    inset 0 1px 0 rgba(255, 255, 255, .06);
  overflow: hidden;
}

.status-item span {
  grid-row: 1 / span 2;
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(214, 177, 92, .12);
  box-shadow: 0 0 24px rgba(214, 177, 92, .14);
}

.status-dot::before {
  content: "";
  width: 9px;
  height: 9px;
  display: block;
  border-radius: 999px;
  background: #63ffb0;
  box-shadow: 0 0 18px rgba(99, 255, 176, .9);
  animation: statusPulse 1.9s ease-in-out infinite;
}

.status-item b {
  font-size: 15px;
  letter-spacing: -.02em;
}

.status-item small {
  color: var(--muted);
  font-size: 12px;
}

@keyframes statusPulse {
  0%, 100% { transform: scale(.9); opacity: .75; }
  50% { transform: scale(1.25); opacity: 1; }
}


@media (max-width: 920px) {
  .status-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .status-strip {
    grid-template-columns: 1fr;
  }

  .status-item {
    min-height: 70px;
  }
}

/* AppleDelta premium brand line — step 31 */
.brand-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 22px;
}

.brand-line span {
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(255, 235, 176, .92);
  font-size: 12px;
  letter-spacing: .04em;
  background: rgba(214, 177, 92, .10);
  border: 1px solid rgba(214, 177, 92, .18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

/* Floating Telegram CTA */
.floating-telegram {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid rgba(218, 180, 92, 0.55);
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, rgba(18, 24, 38, 0.94), rgba(8, 10, 18, 0.94));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.42), 0 0 28px rgba(80, 120, 255, 0.24);
  backdrop-filter: blur(14px);
}

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

.floating-telegram__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #dcb75f;
  box-shadow: 0 0 16px rgba(220, 183, 95, 0.9);
}

@media (max-width: 640px) {
  .floating-telegram {
    left: 18px;
    right: 18px;
    justify-content: center;
  }
}

/* Hide floating Telegram when bottom mobile CTA is visible */
@media (max-width: 900px) {
  .floating-telegram {
    display: none;
  }
}

/* Extra scroll space for fixed bottom CTA */
@media (max-width: 900px) {
  body {
    padding-bottom: 92px;
  }
}
