@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&family=Space+Grotesk:wght@300;400;600&display=swap');

:root {
  --black: #000000;
  --cyan: #00FFFF;
  --lime: #32CD32;
  --gray: #333333;
  --dark-gray: #1a1a1a;
  --light-gray: #999999;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background-color: var(--black);
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Mono', monospace;
  color: var(--cyan);
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--lime);
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.02); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

@keyframes pulse-cta {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@keyframes pulse-border {
  0%, 100% { border-color: var(--cyan); box-shadow: 0 0 5px rgba(0,255,255,0.3); }
  50% { border-color: var(--lime); box-shadow: 0 0 15px rgba(50,205,50,0.3); }
}

@keyframes progress-glow {
  0%, 100% { box-shadow: 0 0 5px rgba(0,255,255,0.5); }
  50% { box-shadow: 0 0 15px rgba(0,255,255,0.8); }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
  transition: background 0.3s ease;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.98);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Roboto Mono', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cyan);
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  position: relative;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.85rem;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cyan);
}

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  padding: 8px 12px;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 4px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 50%, rgba(50, 205, 50, 0.03) 0%, transparent 50%);
  animation: gradient-shift 8s ease infinite;
  background-size: 200% 200%;
}

.hero-split {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-content {
  flex: 1;
  text-align: left;
}

.hero-image {
  flex: 0 0 auto;
  max-width: 500px;
  animation: float 6s ease-in-out infinite;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.15));
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-badge {
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  color: var(--cyan);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-family: 'Roboto Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--light-gray);
  margin-bottom: 35px;
  max-width: 700px;
}

.hero-features {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--light-gray);
  font-size: 0.9rem;
}

.hero-feature .icon {
  color: var(--lime);
  font-size: 1.1rem;
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  color: var(--black);
  font-family: 'Roboto Mono', monospace;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulse-cta 3s ease-in-out infinite;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
  color: var(--black);
}

.hero-stats {
  display: flex;
  justify-content: flex-start;
  gap: 50px;
  margin-top: 40px;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cyan);
}

.hero-stat .label {
  font-size: 0.8rem;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 20px;
}

.section-dark {
  background: var(--dark-gray);
}

.section-black {
  background: var(--black);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--cyan);
}

.section-subtitle {
  text-align: center;
  color: var(--light-gray);
  margin-bottom: 50px;
  font-size: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== RANKING CARDS ===== */
.ranking-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ranking-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.15);
  border-radius: 12px;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ranking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--cyan), var(--lime));
  opacity: 0;
  transition: opacity 0.3s;
}

.ranking-card:hover {
  border-color: rgba(0, 255, 255, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.ranking-card:hover::before {
  opacity: 1;
}

.ranking-card.featured {
  border-color: rgba(0, 255, 255, 0.4);
  background: rgba(0, 255, 255, 0.05);
}

.ranking-card.featured::before {
  opacity: 1;
}

.ranking-position {
  font-family: 'Roboto Mono', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--cyan);
  min-width: 50px;
  text-align: center;
}

.ranking-card.featured .ranking-position {
  color: var(--lime);
}

.ranking-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.ranking-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ranking-info {
  flex: 1;
}

.ranking-name {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.ranking-url {
  font-size: 0.8rem;
  color: var(--cyan);
  margin-bottom: 8px;
  opacity: 0.7;
}

.ranking-description {
  font-size: 0.9rem;
  color: var(--light-gray);
  line-height: 1.5;
}

.ranking-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.ranking-tag {
  background: rgba(0, 255, 255, 0.1);
  color: var(--cyan);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-family: 'Roboto Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ranking-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 80px;
}

.ranking-stars {
  color: #ffd700;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.ranking-score {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--lime);
}

.ranking-score-label {
  font-size: 0.7rem;
  color: var(--light-gray);
  text-transform: uppercase;
}

.ranking-cta {
  flex-shrink: 0;
}

.ranking-cta a {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-family: 'Roboto Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  text-decoration: none;
  white-space: nowrap;
}

.ranking-cta a:hover {
  background: var(--cyan);
  color: var(--black);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* ===== GRID CARDS ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(0, 255, 255, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--cyan);
}

.card p {
  color: var(--light-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== STEPS/TIMELINE ===== */
.steps-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.step {
  text-align: center;
  max-width: 280px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Roboto Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cyan);
  transition: all 0.3s;
}

.step:hover .step-number {
  background: var(--cyan);
  color: var(--black);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.step p {
  color: var(--light-gray);
  font-size: 0.85rem;
}

/* ===== COMPATIBILITY ===== */
.compat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.compat-item {
  text-align: center;
  padding: 25px 15px;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.15);
  border-radius: 12px;
  transition: all 0.3s;
}

.compat-item:hover {
  border-color: var(--cyan);
  transform: translateY(-5px);
}

.compat-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.compat-item h4 {
  font-size: 0.85rem;
  color: var(--cyan);
}

/* ===== QUALITY BARS ===== */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.quality-item {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
}

.quality-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.quality-header h4 {
  font-size: 0.9rem;
  color: var(--cyan);
}

.quality-header span {
  font-family: 'Roboto Mono', monospace;
  font-weight: 700;
  color: var(--lime);
}

.quality-bar {
  height: 6px;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.quality-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  border-radius: 3px;
  animation: progress-glow 2s ease-in-out infinite;
  transition: width 1s ease;
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.review-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s;
}

.review-card:hover {
  border-color: rgba(0, 255, 255, 0.3);
}

.review-stars {
  color: #ffd700;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  color: var(--light-gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
}

.review-author {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.85rem;
  color: var(--cyan);
}

.review-location {
  font-size: 0.75rem;
  color: var(--light-gray);
  margin-top: 3px;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: rgba(0, 255, 255, 0.3);
}

.faq-question {
  width: 100%;
  padding: 18px 25px;
  background: rgba(26, 26, 26, 0.8);
  border: none;
  color: var(--cyan);
  font-family: 'Roboto Mono', monospace;
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(0, 255, 255, 0.05);
}

.faq-arrow {
  transition: transform 0.3s;
  font-size: 0.8rem;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: rgba(0, 0, 0, 0.3);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px 25px;
}

.faq-answer p {
  color: var(--light-gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta {
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-cta p {
  color: var(--light-gray);
  margin-bottom: 35px;
  font-size: 1.1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-gray);
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  padding: 40px 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: 'Roboto Mono', monospace;
  font-size: 1rem;
  color: var(--cyan);
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--light-gray);
  transition: color 0.3s;
}

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--light-gray);
  width: 100%;
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===== CONTENT GRID ===== */
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.content-card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s;
}

.content-card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
}

.content-card-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.content-card h4 {
  color: var(--cyan);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.content-card p {
  color: var(--light-gray);
  font-size: 0.8rem;
}

/* ===== SERP IMAGE ===== */
.serp-image-container {
  display: none;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 20px 80px;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content p,
.legal-content li {
  color: var(--light-gray);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 25px;
  margin-bottom: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .compat-grid { grid-template-columns: repeat(3, 1fr); }
  .content-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    padding: 20px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
  }
  .mobile-toggle { display: block; }

  .hero-split { flex-direction: column; gap: 40px; }
  .hero-content { text-align: left; }
  .hero-badges { justify-content: flex-start; }
  .hero-badge:nth-child(3) { display: none; }
  .hero-features { justify-content: flex-start; flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-stats { justify-content: flex-start; gap: 30px; }
  .hero-image { max-width: 100%; order: 2; }
  .hero h1 { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }

  .section-title { font-size: 1.5rem; text-align: left; }
  .section-subtitle { text-align: left; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .quality-grid { grid-template-columns: 1fr; }
  .compat-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; }
  .steps-container { flex-direction: column; align-items: flex-start; }
  .step { text-align: left; }

  .ranking-card {
    flex-direction: column;
    text-align: left;
    padding: 20px;
    align-items: flex-start;
  }

  .ranking-position { font-size: 1.5rem; }
  .ranking-tags { justify-content: flex-start; }
  .ranking-rating { flex-direction: row; gap: 10px; }

  .final-cta { text-align: left; }
  .final-cta h2 { font-size: 1.8rem; }
  .footer-inner { flex-direction: column; text-align: left; }
  .footer-copy { text-align: left; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .cta-button { padding: 14px 30px; font-size: 0.85rem; }
  .hero-stat .number { font-size: 1.4rem; }
  .compat-grid { grid-template-columns: repeat(2, 1fr); }
}
