@charset "UTF-8";

:root {
  --color-bg: #0a0a0a;
  --color-bg-2: #1a1a1a;
  --color-card: rgba(26, 26, 26, 0.9);
  --color-border: rgba(255, 215, 0, 0.2);
  --color-primary: #ffeb3b;
  --color-primary-2: #fdd835;
  --color-success: #4caf50;
  --color-text: #ffffff;
  --color-muted: #e9ecef;
  --topbar-height: 180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-2) 50%, #0f0f0f 100%);
  color: var(--color-text);
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  padding: 0 0.75rem;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .container { max-width: 540px; }
}
@media (min-width: 768px) {
  .container { max-width: 720px; }
}
@media (min-width: 992px) {
  .container { max-width: 960px; }
}
@media (min-width: 1200px) {
  .container { max-width: 1140px; }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.75rem;
}
.row > * {
  padding: 0 0.75rem;
  width: 100%;
}
.col-12 { width: 100%; }
@media (min-width: 992px) {
  .col-lg-6 { width: 50%; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary {
  background: var(--color-primary);
  color: #1a1a1a;
  box-shadow: 0 6px 16px rgba(253, 216, 53, 0.35);
}
.btn-success {
  background: var(--color-success);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.35);
}
.btn-lg { padding: 0.9rem 1.5rem; font-size: 1.05rem; }

.site-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #151515;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.site-header {
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid var(--color-border);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}
.brand img {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.header-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.nav-menu {
  background: #151515;
}
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}
.mobile-nav-label {
  color: #ffffff;
  font-weight: 700;
}
.hamburger {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 28px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 3px;
  background: var(--color-primary);
  border-radius: 3px;
}
.mobile-nav-content {
  display: none;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding-bottom: 1rem;
}
.mobile-nav-content.show { display: flex; }
.nav-item { display: block; }
.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.4rem 0.2rem;
  display: inline-block;
}
.nav-link.current {
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .mobile-nav-toggle { display: none; }
  .mobile-nav-content { display: flex; padding: 0.75rem 0; }
}

.main {
  padding: calc(var(--topbar-height) + 12px) 0 2rem;
}

@media (max-width: 768px) {
  :root {
    --topbar-height: 200px;
  }
}

.hero-section {
  background: rgba(26, 26, 26, 0.6);
  padding: 2.5rem 0;
  margin: 1rem 0;
  border-radius: 20px;
  border: 1px solid var(--color-border);
}
.hero-section h1 {
  font-size: 2.4rem;
  margin: 0 0 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-section p {
  color: var(--color-muted);
  margin-bottom: 1.25rem;
}

.section-block {
  padding: 2.5rem 0;
}
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}
.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  color: var(--color-muted);
  font-size: 1.1rem;
  margin: 0;
}

.cards-grid,
.features-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.media-stack {
  display: grid;
  gap: 1.5rem;
}
.media-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  background: var(--color-card);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
.media-figure img {
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
.media-list {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  color: var(--color-muted);
}

.card,
.feature-card,
.stat-card {
  background: var(--color-card);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
.card img,
.feature-card img {
  border-radius: 16px;
  margin-bottom: 1rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
.card-title,
.feature-title {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  color: #ffffff;
}
.card-text,
.feature-text {
  color: var(--color-muted);
  margin: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.tag {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000000;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(20, 20, 20, 0.7);
}
.data-table th,
.data-table td {
  padding: 0.9rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.data-table th {
  color: var(--color-primary);
  font-weight: 700;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 16px;
  padding: 1.5rem;
  border-left: 4px solid var(--color-success);
}
.testimonial-quote {
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  margin: 0.75rem 0 0;
}
.testimonial-author {
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.faq-list details {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-list summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--color-primary);
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list .faq-body {
  padding: 0 1.25rem 1.25rem;
  color: var(--color-muted);
}

.cta-block {
  background: linear-gradient(135deg, #4E342E 0%, #3E2723 100%);
  border-radius: 20px;
  border: 2px solid var(--color-primary);
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 16px 48px rgba(255, 235, 59, 0.2);
}
.cta-block p { color: var(--color-muted); }

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}
