html, body { overflow-x: hidden; max-width: 100vw; }

section[data-section] {
  --sp1: 12px;
  --sp2: 24px;
  --sp3: 48px;
  --rad: var(--radius-lg);
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: var(--sp3) 0;
}

section[data-section] * { box-sizing: border-box; }

/* HERO */
[data-section="hero"] {
  display: flex;
  flex-direction: column;
  gap: var(--sp2);
  position: relative;
  padding: var(--sp3) var(--sp2);
  overflow: hidden;
  border-radius: var(--rad);
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--surface) 100%);
  box-shadow: var(--shadow-deep);
}

[data-section="hero"]::after {
  content: "";
  position: absolute;
  right: -2%;
  top: -2%;
  width: 40%;
  height: 40%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
  opacity: .15;
  pointer-events: none;
}

.xs-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp1);
}

.xs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent-gold-bright);
  background: rgba(0,0,0,.2);
  backdrop-filter: blur(4px);
}

.xs-h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 900px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -.02em;
}

.xs-hero-text {
  position: relative;
  z-index: 1;
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.xs-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp2);
  position: relative;
  z-index: 1;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--radius-md);
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a0f00;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent-gold-bright), var(--accent-gold));
  box-shadow: 0 10px 30px -8px rgba(255,190,60,.6);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: xs-pulse 2.6s ease-in-out infinite;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px -8px rgba(255,190,60,.75);
}

@keyframes xs-pulse {
  0%, 100% { box-shadow: 0 10px 30px -8px rgba(255,190,60,.6); }
  50% { box-shadow: 0 10px 40px -4px rgba(255,190,60,.85); }
}

.xs-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp2);
  font-size: .85rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

.xs-trust strong { color: var(--accent-gold-bright); font-size: 1.1rem; }

/* SECTION HEADS */
.xs-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--sp2);
  text-align: left;
}

.xs-head h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--text-primary);
}

.xs-head p {
  margin: 0;
  max-width: 680px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.xs-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* CARDS GRID */
.xs-cards {
  display: grid;
  gap: var(--sp2);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .xs-cards { grid-template-columns: repeat(2, 1fr); }
}

.card.xs-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp1);
  padding: var(--sp2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--rad);
  background: var(--surface);
  color: var(--text-primary);
  box-shadow: var(--shadow-deep);
  transition: transform .3s ease, box-shadow .3s ease;
}

.card.xs-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,.55);
}

.xs-card-tag {
  display: inline-block;
  width: fit-content;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--bg-primary);
  background: var(--accent-gold);
}

.xs-card h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.xs-card p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* TABLE */
.table-responsive {
  overflow-x: auto;
  margin-top: var(--sp2);
  border-radius: var(--rad);
  box-shadow: var(--shadow-deep);
}

.xs-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  background: var(--surface);
}

.xs-table th, .xs-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
  font-size: .9rem;
  color: var(--text-secondary);
}

.xs-table th {
  color: var(--accent-gold-bright);
  font-weight: 700;
  background: rgba(0,0,0,.2);
}

.xs-table tr:last-child td { border-bottom: none; }
.xs-table tr:hover td { color: var(--text-primary); }

/* TIMELINE */
.xs-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp2);
  padding-left: var(--sp2);
  border-left: 2px solid var(--accent-gold);
}

.xs-timeline-item {
  position: relative;
  padding-left: var(--sp2);
}

.xs-timeline-item::before {
  content: attr(data-step);
  position: absolute;
  left: -46px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: .9rem;
  font-weight: 800;
  color: var(--bg-primary);
  background: linear-gradient(135deg, var(--accent-gold-bright), var(--accent-gold));
  box-shadow: 0 6px 16px -4px rgba(255,190,60,.6);
}

.xs-timeline-item h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.xs-timeline-item p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* HIGHLIGHT BOXES */
.xs-highlight-grid {
  display: grid;
  gap: var(--sp2);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .xs-highlight-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .xs-highlight-grid { grid-template-columns: repeat(4, 1fr); }
}

.highlight-box.xs-highlight {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: var(--sp2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--rad);
  background: linear-gradient(160deg, var(--surface-light), var(--surface));
  color: var(--text-primary);
  box-shadow: var(--shadow-deep);
  transition: transform .3s ease;
}

.highlight-box.xs-highlight:hover { transform: translateY(-6px); }

.xs-highlight-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-gold-bright);
}

.xs-highlight p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* ACCORDION */
.xs-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--sp1);
}

.xs-accordion-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--surface);
  overflow: hidden;
}

.xs-accordion-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp1);
  cursor: pointer;
  padding: 18px var(--sp2);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  list-style: none;
}

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

.xs-accordion-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent-gold-bright);
  transition: transform .25s ease;
}

.xs-accordion-item[open] summary::after { transform: rotate(45deg); }

.xs-accordion-item[open] { border-color: var(--accent-gold); }

.xs-accordion-body {
  padding: 0 var(--sp2) var(--sp2);
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* FAQ CTA */
.xs-faq-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp2);
  margin-top: var(--sp3);
  padding: var(--sp2);
  border-radius: var(--rad);
  background: linear-gradient(135deg, var(--bg-secondary), var(--surface));
  box-shadow: var(--shadow-deep);
}

.xs-faq-cta p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 600;
}