:root {
  --primary-gold: #f59e0b;
  --primary-gold-light: #fbbf24;
  --primary-gold-dark: #d97706;
  --secondary-amber: #f3a847;
  --bg-dark: #0f172a;
  --bg-dark-secondary: #1e293b;
  --bg-dark-tertiary: #334155;
  --text-light: #f8fafc;
  --text-gray: #cbd5e1;
  --text-dark-gray: #64748b;
  --accent-green: #10b981;
  --border-gold: rgba(245, 158, 11, 0.3);
  --gradient-gold: linear-gradient(135deg, #f59e0b, #fbbf24);
  --gradient-bg: linear-gradient(135deg, #0f172a, #1e293b);
}

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

body {
  font-family: "Inter", sans-serif;
  background: var(--gradient-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.05));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-gold);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 48px;
  height: 48px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--bg-dark);
  font-weight: bold;
}

.brand-text h1 {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-subtitle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--primary-gold-light);
}

/* Hero Section */
.hero {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(251, 191, 36, 0.02));
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(251, 191, 36, 0.1));
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-gold);
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title-main {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-title-sub {
  font-size: 1.5rem;
  color: var(--text-gray);
  font-weight: 400;
  display: block;
  margin-top: 0.5rem;
}

@media (min-width: 1024px) {
  .hero-title-sub {
    font-size: 2rem;
  }
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--bg-dark);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
  background: var(--primary-gold);
  color: var(--bg-dark);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-placeholder {
  width: 100%;
  max-width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(251, 191, 36, 0.1));
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(10px);
}

.hero-placeholder-icon {
  width: 8rem;
  height: 8rem;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin-bottom: 1rem;
}

.rune-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
  font-size: 2.5rem;
  color: var(--primary-gold);
}

.rune {
  animation: pulse 2s infinite;
}

.rune:nth-child(2) {
  animation-delay: 0.2s;
}
.rune:nth-child(3) {
  animation-delay: 0.4s;
}
.rune:nth-child(4) {
  animation-delay: 0.6s;
}
.rune:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.5), rgba(51, 65, 85, 0.3));
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 1.25rem;
  color: var(--text-gray);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.section-divider {
  width: 6rem;
  height: 4px;
  background: var(--gradient-gold);
  margin: 1rem auto 3rem;
  border-radius: 2px;
}

/* Card Styles */
.card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
  border: 1px solid var(--border-gold);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  overflow: hidden;
  margin-bottom: 2rem;
}

.card-content {
  padding: 2rem;
}

/* Table Styles */
.table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

.table th,
.table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-gold);
}

.table th {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(251, 191, 36, 0.1));
  font-weight: 700;
  color: var(--text-light);
}

.table .featured {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.05));
  color: var(--primary-gold);
  text-align: center;
}

.table tr:hover {
  background: rgba(245, 158, 11, 0.05);
}

.badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--bg-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
}

/* List Styles */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 0.75rem;
  border: 1px solid var(--border-gold);
  transition: all 0.3s ease;
}

.feature-list li:hover {
  background: rgba(245, 158, 11, 0.1);
  transform: translateY(-2px);
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gradient-gold);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  flex-shrink: 0;
}

/* Steps */
.steps {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.05));
  border-radius: 1rem;
  border: 1px solid var(--border-gold);
}

.step-number {
  width: 2rem;
  height: 2rem;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h5 {
  color: var(--primary-gold);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.step-content p {
  color: var(--text-gray);
  font-size: 0.875rem;
}

/* Testimonials */
.testimonials {
  display: grid;
  gap: 2rem;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .testimonials {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.05));
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border-gold);
}

.testimonial-content {
  font-style: italic;
  color: var(--text-gray);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial-author {
  color: var(--primary-gold);
  font-weight: 600;
}

.testimonial-location {
  color: var(--text-dark-gray);
  font-size: 0.875rem;
}

/* FAQ */
.faq-item {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
  border: 1px solid var(--border-gold);
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(245, 158, 11, 0.05);
}

.faq-question:hover {
  background: rgba(245, 158, 11, 0.1);
}

.faq-question h4 {
  color: var(--primary-gold);
  font-weight: 600;
  margin: 0;
}

.faq-answer {
  padding: 1.5rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.05));
  text-align: center;
  padding: 5rem 0;
}

.cta h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta p {
  font-size: 1.5rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-info {
  margin-top: 1rem;
  color: var(--text-dark-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-top: 1px solid var(--border-gold);
  padding: 3rem 0;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-brand h3 {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: var(--text-dark-gray);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom {
  border-top: 1px solid var(--border-gold);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  color: var(--text-dark-gray);
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-title-sub {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta h2 {
    font-size: 2rem;
  }

  .cta p {
    font-size: 1.25rem;
  }

  .table th,
  .table td {
    padding: 0.5rem;
    font-size: 0.875rem;
  }
}

/* Highlight Elements */
.highlight {
  color: var(--primary-gold);
  font-weight: 700;
}

.highlight-green {
  color: var(--accent-green);
  font-weight: 700;
}

.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pros and Cons Grid */
.pros-cons-grid {
  display: grid;
  gap: 2rem;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .pros-cons-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pros,
.cons {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
  border: 1px solid var(--border-gold);
  border-radius: 1rem;
  padding: 2rem;
}

.pros h3 {
  color: var(--accent-green);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cons h3 {
  color: #ef4444;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pros ul,
.cons ul {
  list-style: none;
  padding: 0;
}

.pros li,
.cons li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-gold);
  color: var(--text-gray);
}

.pros li:last-child,
.cons li:last-child {
  border-bottom: none;
}

.pros li strong,
.cons li strong {
  color: var(--primary-gold);
}
