/* ======== General Reset ======== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  color: #222;
  line-height: 1.6;
  background: #f7f7f7;
}
html, body {
  font-family: "Playfair Display", "Poppins", "Georgia", serif;
  background: #fef9f5;
  color: #3a0c0c;
  line-height: 1.6;
}
h1, h2, h3 {
  font-family: "Playfair Display", serif;
  color: #b60d0d;
  text-shadow: 1px 1px 0 #f3c96b;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ======== Container ======== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ======== Header ======== */
.sxat-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* ===== HEADER ===== */
.sxat-header {
  background: #341414;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.sxat-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* ===== LOGO ===== */
.sxat-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  transition: opacity .3s ease;
}

.sxat-logo:hover { opacity: 0.8; }

.sxat-logo img {
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.sxat-logo:hover img {
  transform: rotate(8deg) scale(1.05);
}

.sxat-logo-text {
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 1px;
}
.sxat-logo-text i {
  font-style: normal;
  opacity: 0.8;
}
.sxat-logo-text em {
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(90deg, #fff 0%, #ccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== NAVIGATION ===== */
.sxat-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.sxat-nav a {
  color: #f1f1f1;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: .5px;
  position: relative;
  transition: color .3s;
}

.sxat-nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #fff;
  transition: width .3s ease;
}

.sxat-nav a:hover::after, 
.sxat-nav a.active::after {
  width: 100%;
}

.sxat-nav a:hover {
  color: #fff;
}

/* ===== BURGER ===== */
.sxat-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.sxat-burger span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

/* ======== Hero Section ======== */
.sxat-hero {
  background: linear-gradient(135deg, #fff7ed, #ffe2e2);
  border-bottom: 4px solid #b60d0d;
  text-align: center;
  padding: 80px 20px;
  position: relative;
}
.sxat-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.5), transparent 70%);
  pointer-events: none;
}
.sxat-hero h1 {
  font-size: 3rem;
  color: #b60d0d;
  text-shadow: 1px 1px 0 #f8d76b;
  margin-bottom: 10px;
}



.sxat-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  background-attachment: fixed; /* Parallax effect */
  filter: brightness(0.3) grayscale(30%);
  z-index: 0;
  transition: transform 0.5s ease;
}

/* Hero content */
.sxat-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.sxat-hero-text {
  animation: fadeInUp 1s ease forwards;
}

.sxat-hero-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.sxat-hero-subtitle {
  font-size: 1.25rem;
  color: #ddd;
  margin-bottom: 2rem;
}

/* Buttons */
.sxat-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sxat-btn {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 6px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.sxat-btn-primary {
  background: linear-gradient(90deg, #fff 0%, #ccc 100%);
  color: #000;
  box-shadow: 0 4px 12px rgba(255,255,255,0.3);
}

.sxat-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255,255,255,0.4);
}

.sxat-btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.sxat-btn-outline:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}
/* Animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}


/* === OFFERS SECTION === */
.sxat-offers {
  background: #fffaf3;
  padding: 60px 20px;
  text-align: center;
}

.sxat-offers-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.sxat-title {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.sxat-badge {
  background: #fff;
  color: #000;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sxat-offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.sxat-offer-card-retro {
  background: linear-gradient(145deg, #fffaf0, #fff3e0);
  border: 3px solid #d9a512;
  border-radius: 20px;
  overflow: hidden;
  padding: 20px;
  max-width: 750px;
  margin: 15px auto;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(255,180,0,0.3), 0 8px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sxat-offer-card-retro:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 30px rgba(255,180,0,0.5), 0 12px 40px rgba(0,0,0,0.15);
}

/* Header with logo and badge */
.sxat-offer-header {
  position: relative;
  text-align: center;
  margin-bottom: 15px;
}

.sxat-offer-logo-retro {
  max-width: 180px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 0 6px #ffd95e);
  transition: transform 0.3s ease;
}

.sxat-offer-logo-retro:hover {
  transform: scale(1.1) rotate(-2deg);
}

.sxat-badge-retro {
  position: absolute;
  top: 0;
  right: 10px;
  background: linear-gradient(90deg, #ffd700, #ffa500);
  color: #3a0c0c;
  padding: 5px 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* Body */
.sxat-offer-body-retro {
  text-align: left;
  padding: 10px 0;
}

.sxat-offer-title-retro {
  font-size: 1.25rem;
  color: #b60d0d;
  margin-bottom: 6px;
  text-shadow: 1px 1px #fff3b0;
}

.sxat-subtitle-retro {
  font-size: 0.95rem;
  color: #5a2323;
  margin-bottom: 12px;
}

.sxat-features-retro {
  list-style: none;
  padding-left: 0;
  margin-bottom: 12px;
}

.sxat-features-retro li {
  margin-bottom: 8px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.sxat-icon-retro {
  display: inline-block;
  width: 26px;
  text-align: center;
  margin-right: 8px;
  color: #d9a512;
  font-size: 1.1rem;
}

/* Payment methods */
.sxat-payment-retro {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #b60d0d;
  margin-bottom: 15px;
}

/* Footer with rating and CTA */
.sxat-offer-footer-retro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.sxat-rating-retro {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sxat-stars-retro {
  color: #ffd700;
  font-size: 1rem;
  text-shadow: 1px 1px 2px #b47a00;
}

.sxat-score-retro {
  font-weight: 700;
  color: #3a0c0c;
}

/* CTA Button */
.sxat-btn-retro {
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #3a0c0c;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 0 #b47a00;
}

.sxat-btn-retro:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 0 #b47a00;
  background: linear-gradient(135deg, #fff176, #ffb347);
}

/* Responsible info */
.sxat-responsible-retro {
  margin-top: 15px;
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
  color: #5a2323;
}

.sxat-responsible-retro a {
  color: #b60d0d;
  text-decoration: underline;
}
.sxat-subtitle {
  font-size: 0.95rem;
  color: #aaa;
  margin-bottom: 15px;
}

.sxat-features {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.sxat-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.sxat-payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: #bbb;
  margin-bottom: 15px;
}

.sxat-offer-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #888;
}

.sxat-offer-footer a {
  color: #fff;
  text-decoration: underline;
}

.sxat-offer-cta {
  padding: 15px 20px;
  border-top: 1px solid #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sxat-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sxat-stars {
  color: #FFD700;
}

.sxat-score {
  font-weight: 700;
}

.sxat-btn {
  display: inline-block;
  background: linear-gradient(180deg, #f8d76b, #d9a512);
  color: #3a0c0c;
  padding: 12px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 0 #b47a00, 0 0 8px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.sxat-btn:hover {
  background: linear-gradient(180deg, #ffe27a, #e4b326);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #b47a00, 0 0 12px rgba(0,0,0,0.25);
}



.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.payment-logos .pm {
  background: #eee;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #444;
}

/* === FOOTER INSIDE CARD === */
.offer-footer {
  font-size: 0.8rem;
  color: #777;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* === CTA / RATING === */
.offer-cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-width: 150px;
}

.rating {
  text-align: center;
  margin-bottom: 12px;
}

.stars {
  color: #ff9800;
  font-size: 1.1rem;
}

.score {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
}

.btn-bonus {
  display: inline-block;
  background: linear-gradient(90deg, #ff5f6d, #ffc371);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s;
}
.top-banner {
    background-color: #0b5311;
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 10px;
}
.btn-bonus:hover {
  background: linear-gradient(90deg, #ff3e4e, #ffb347);
  color: #fff;
}

/* ======== FAQ Section ======== */
.sxat-faq-retro-vertical {
  background: #fff7ed;
  padding: 80px 20px;
}

.sxat-faq-title-retro-vertical {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 900;
  color: #b60d0d;
  margin-bottom: 60px;
  text-shadow: 2px 2px #ffd700;
}

/* Column layout */
.sxat-faq-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Card */
.sxat-faq-card {
  background: #fff3e0;
  border: 2px solid #ffd700;
  border-radius: 20px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sxat-faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4), 0 5px 15px rgba(0,0,0,0.1);
}

/* Card Header */
.sxat-faq-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.sxat-faq-icon {
  font-size: 2.5rem;
  background: #ffd700;
  color: #b60d0d;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.7);
  transition: transform 0.3s;
}

.sxat-faq-card:hover .sxat-faq-icon {
  transform: rotate(15deg) scale(1.15);
}

.sxat-faq-card-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #3a0c0c;
}

/* Card Body */
.sxat-faq-card-body {
  margin-top: 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, padding 0.6s ease;
}

.sxat-faq-card.active .sxat-faq-card-body {
  max-height: 600px;
  padding-top: 15px;
}

.sxat-faq-card-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: #5a2323;
}

/* ======== Responsible Section ======== */
.sxat-responsible-parallax {
  position: relative;
  height: 400px;
  background: url('../img/responsible-bg.jpg') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sxat-responsible-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.sxat-responsible-content h2 {
  color: #ffd700;
  font-size: 2.5rem;
  font-weight: 900;
  text-shadow: 2px 2px #b60d0d;
  margin-bottom: 15px;
}

.sxat-responsible-content p {
  color: #fff;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 25px auto;
  line-height: 1.6;
}

.sxat-btn-responsible {
  display: inline-block;
  background: linear-gradient(90deg, #ff5f6d, #ffc371);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.sxat-btn-responsible:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,95,109,0.5), 0 4px 15px rgba(255,195,113,0.3);
}

.sxat-responsible-logos {
  margin-top: 30px;
}

.sxat-responsible-logos img {
  height: 60px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.sxat-responsible-logos img:hover {
  transform: scale(1.1);
}
.sxat-responsible {
  background: #fffaf3;
  border-top: 4px solid #e6c467;
  padding: 40px 20px;
  text-align: center;
}

.sxat-responsible a {
  color: #b60d0d;
  text-decoration: underline;
  font-weight: 600;
}

.sxat-responsible a:hover {
  color: #d92626;
}
/* ======== Footer ======== */
.sxat-footer-trust {
  background: linear-gradient(135deg, #1a0a0a, #4b0f2c);
  color: #fff;
  padding: 60px 20px 30px;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.sxat-footer-top h2 {
  font-size: 2rem;
  color: #ffd700;
  text-shadow: 1px 1px #b60d0d;
  margin-bottom: 15px;
}

.sxat-footer-top p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.sxat-trust-logos {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.sxat-trust-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.age-big {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff0000;
  margin-right: 20px;
  flex-shrink: 0;
}

.trust-badge img {
  height: 50px;
  filter: brightness(1) invert(1);
  transition: transform 0.3s, filter 0.3s;
}

.trust-badge img:hover {
  transform: scale(1.1);
  filter: brightness(1.5) drop-shadow(0 0 10px #ffd700);
}

.sxat-footer-warning {
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #f0f0f0;
}

.sxat-footer-warning a {
  color: #ffcb05;
  text-decoration: underline;
}

.sxat-footer-bottom {
  border-top: 1px solid rgba(255, 203, 5, 0.3);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.sxat-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.sxat-footer-links a {
  color: #ffd700;
  text-decoration: none;
  transition: 0.3s;
}

.sxat-footer-links a:hover {
  text-decoration: underline;
  color: #ffcb05;
}

/* ======== Popup 18+ ======== */
.popup-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.popup-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}
.popup-card h2 { margin-bottom: 15px; }
.popup-card p { margin-bottom: 20px; }
.popup-card .popup-actions button {
  margin: 5px;
}



/* ===== Testimonials Carousel ===== */
.testimonial-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-height: 260px;
}
.testimonial-item {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}
section#testimonials {
    padding: 60px 0;
}
.testimonial-item img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}
.carousel-controls button {
  background: linear-gradient(90deg, #ff5f6d, #ffc371);
  color: #fff;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
}

.sxat-guide-fancy {
  background: linear-gradient(135deg, #1a0a0a, #2b0f0f);
  color: #fff;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

.sxat-guide-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #f0f0f0;
}

/* Fancy Grid */
.sxat-guide-grid-fancy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  perspective: 1000px;
}

.sxat-step-card {
  flex: 0 1 300px;
  background: linear-gradient(145deg, #3b0f0f, #5b1f1f);
  border: 2px solid #ffcb05;
  border-radius: 20px;
  padding: 25px;
  position: relative;
  transform: rotate(-2deg);
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 15px rgba(255,203,5,0.4), 0 10px 30px rgba(0,0,0,0.5);
}

/* Random rotations */
.sxat-step-card:nth-child(odd) { transform: rotate(-3deg); }
.sxat-step-card:nth-child(even) { transform: rotate(2deg); }

.sxat-step-card::before {
  content: attr(data-step);
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffcb05 0%, #ffa500 70%);
  color: #1a1a1a;
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px #ffcb05, 0 0 20px #ff9900 inset;
  transition: transform 0.3s, box-shadow 0.3s;
}

.sxat-step-card:hover::before {
  transform: scale(1.2);
  box-shadow: 0 0 20px #ffcb05, 0 0 30px #ff9900 inset;
}

.sxat-step-card:hover {
  transform: rotate(0deg) translateY(-10px);
  box-shadow: 0 0 30px #ffcb05, 0 0 50px rgba(255,203,5,0.4);
}

.sxat-step-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 1px 1px #b60d0d;
  margin-bottom: 12px;
}

.sxat-step-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #f0f0f0;
}

/* Final Jackpot Block */
.sxat-final {
  flex: 1 1 100%;
  background: #1a1a1a;
  border: 3px solid #ffd700;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 0 40px #ffd700, 0 0 80px rgba(255,215,0,0.3);
}

.sxat-final h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffd700;
  margin-bottom: 20px;
}

.sxat-checklist {
  list-style: none;
  padding: 0;
  margin: 15px 0 20px 0;
}

.sxat-checklist li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #fff;
}

.sxat-checklist li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: #ffcb05;
  font-size: 1.2rem;
}

.sxat-step {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: #fff;
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  margin-right: 12px;
}

.sxat-guide-block p {
  color: #ccc;
  line-height: 1.6;
}

.sxat-final {
  grid-column: 1/-1;
  background: #222;
  border-color: #444;
}

.sxat-checklist {
  list-style: none;
  padding-left: 0;
  margin: 15px 0;
}

.sxat-checklist li {
  position: relative;
  text-align: left;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 500;
}

.sxat-checklist li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #6232b2; /* Акцент */
}

.sxat-contact-fancy {
  position: relative;
  padding: 100px 20px;
  font-family: 'Inter', sans-serif;
  color: #fff;
  overflow: hidden;
}

.sxat-contact-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a0a0a 0%, #4b0f2c 100%);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  z-index: 0;
}

@keyframes gradientMove {
  0% {background-position:0% 50%;}
  50% {background-position:100% 50%;}
  100% {background-position:0% 50%;}
}

.sxat-contact-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.sxat-contact-form-card,
.sxat-contact-info-card {
  background: rgba(0,0,0,0.6);
  border: 2px solid #ffcb05;
  border-radius: 20px;
  padding: 40px 30px;
  flex: 1 1 400px;
  max-width: 500px;
  box-shadow: 0 0 30px #ffcb05, 0 10px 40px rgba(0,0,0,0.7);
  transition: transform 0.3s, box-shadow 0.3s;
}

.sxat-contact-form-card:hover,
.sxat-contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 50px #ffcb05, 0 20px 60px rgba(255,203,5,0.3);
}

.sxat-contact-card h2 {
  font-size: 2rem;
  color: #ffd700;
  text-shadow: 1px 1px #b60d0d;
  margin-bottom: 20px;
}

.sxat-contact-form-card p,
.sxat-contact-info-card p {
  color: #f0f0f0;
  margin-bottom: 20px;
}

.sxat-contact-form-card input,
.sxat-contact-form-card textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.sxat-contact-form-card input:focus,
.sxat-contact-form-card textarea:focus {
  background: rgba(255,255,255,0.2);
  box-shadow: 0 0 10px #ffcb05;
}

.sxat-btn-neon {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(45deg, #ffcb05, #ff9900);
  border: 2px solid #ffd700;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 10px #ffcb05, 0 0 20px #ff9900 inset;
  transition: 0.3s;
}

.sxat-btn-neon:hover {
  box-shadow: 0 0 30px #ffcb05, 0 0 50px #ff9900 inset, 0 0 60px #ffd700;
  transform: translateY(-3px);
}

.sxat-contact-info-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.sxat-contact-info-card ul li {
  margin-bottom: 10px;
  color: #fff;
  font-weight: 500;
}

.sxat-socials {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
}

.sxat-socials a img {
  width: 30px;
  height: 30px;
  filter: brightness(1) invert(1);
  transition: 0.3s;
}

.sxat-socials a:hover img {
  filter: brightness(2) drop-shadow(0 0 5px #ffcb05);
}
/* ======== Responsive ======== */
@media(max-width:1024px){
  section h2 {
    font-size: 22px!important;
  }
  .sxat-faq-card-header h3 {
    font-size: 17px;
  }
  .sxat-responsible-parallax {
    height: 500px;
  }
  .sxat-responsible-content h2 {
    font-size: 2rem;
  }
  .sxat-responsible-content p {
    font-size: 1rem;
  }
  .sxat-btn-responsible {
    font-size: 0.95rem;
    padding: 10px 25px;
  }
  .offer-cards { justify-content: center; } }
@media (max-width: 992px) {
  .sxat-contact-inner {
    flex-direction: column;
  }
  .sxat-footer-top {
    flex-direction: column;
    gap: 25px;
  }
  .sxat-logos {
    justify-content: flex-start;
  }
  .sxat-footer-warning {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .sxat-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .sxat-guide-intro {
    font-size: 1rem;
  }
  .sxat-guide-block h2 {
    font-size: 1.3rem;
  }
  .offer-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .offer-logo img {
    margin-bottom: 12px;
  }

  .offer-body {
    text-align: center;
  }

  .offer-cta {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
  }
}
@media(max-width:768px){
    .guide h1 {
    font-size: 1.8rem;
  }

  .guide h2 {
    font-size: 1.3rem;
  }

  .guide .lead {
    font-size: 1rem;
  }

  .guide ul.two-cols {
    grid-template-columns: 1fr;
  }
    #navMenu {
  display: none;
  flex-direction: column;
}
/* Burger animation when active */
.sxat-burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}
.sxat-burger.active span:nth-child(2) {
  opacity: 0;
}
.sxat-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

/* Subtle header shadow when scrolling */
.sxat-header.scrolled {
  background: #0b0b0b;
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}.sxat-burger { display: flex; }

  .sxat-nav {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    background: #0b0b0b;
    transform: translateY(-120%);
    transition: transform .4s ease;
  }
  .sxat-nav.active { transform: translateY(27%); }

  .sxat-nav ul {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
  }
    .sxat-hero-title { font-size: 2.5rem; }
  .sxat-hero-subtitle { font-size: 1.1rem; }
  .faq-question { font-size: 0.95rem; }
   .testimonial-item p {
    font-size: 14px;
  }

  .testimonial-item img {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 576px) {
  

  .btn-bonus {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}