/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #ffffff;
  --primary-light: #ffffff;
  --primary-dark: #000000;
  --bg-dark: #000000;
  --bg-card: #0a0a0a;
  --bg-elevated: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.9);
  --glow: rgba(255, 255, 255, 0.8);
  --border: rgba(255, 255, 255, 0.4);
  --shadow-black: rgba(0, 0, 0, 0.8);
  --shadow-white: rgba(255, 255, 255, 0.6);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Clean background - no animated gradients */

/* ===== STARFIELD BACKGROUND ===== */
#starfield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 150px);
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to bottom, white 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, white 60%, transparent 100%);
}

.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.header {
  background: rgba(0, 0, 0, 0.8);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 20px;
}

/* Logo - Clean and minimal */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  text-decoration: none;
}

.logo-container:hover {
  opacity: 0.8;
}

.logo-container::before {
  display: none;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.logo-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 1px;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: flex-end;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav a:not(.discord-btn)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0.3));
  opacity: 0;
  border-radius: 10px;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.nav a:not(.discord-btn):hover {
  color: var(--text-primary);
  transform: translateY(-2px);
}

.nav a:not(.discord-btn):hover::before {
  opacity: 1;
}

.nav a:not(.discord-btn)::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav a:not(.discord-btn):hover::after {
  width: 60%;
}

/* Discord Button */
.discord-btn {
  background: #ffffff;
  color: #000000 !important;
  padding: 10px 24px !important;
  border-radius: 4px;
  font-weight: 500;
  transition: opacity 0.2s ease;
  position: relative;
  overflow: hidden;
  margin-left: 8px;
}

.discord-btn::before {
  display: none;
}

.discord-btn:hover {
  opacity: 0.9;
  transform: translateY(0) !important;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: transparent;
}

.flag {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  border: 1px solid transparent;
  box-shadow: none;
}

.flag:hover {
  opacity: 0.7;
  transform: none;
  border-color: transparent;
}

.flag:active {
  transform: none;
}

/* ===== HERO ===== */
.hero {
  padding: 140px 0 140px;
  text-align: center;
  background: #000000;
  position: relative;
  overflow: visible;
  min-height: 500px;
  z-index: 1;
}

/* ===== FLOATING BADGES ===== */
.floating-badge {
  position: absolute;
  background: rgba(30, 30, 30, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.floating-badge .badge-icon {
  font-size: 14px;
}

.floating-badge .badge-text {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.floating-badge .badge-sparkle {
  color: #a855f7;
  font-size: 12px;
}

.floating-badge .badge-icons {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* Badge with card lines (mock UI) */
.badge-card-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 20px;
}

.badge-card-lines .line {
  width: 80px;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.badge-card-lines .line.short {
  width: 50px;
}

/* Badge with user avatar mock */
.badge-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-user .user-dot {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.badge-user .user-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.badge-user .user-lines .line {
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.badge-user .user-lines .line:first-child {
  width: 60px;
}

.badge-user .user-lines .line.short {
  width: 40px;
}

/* Badge positions */
.badge-left-top {
  top: 15%;
  left: 8%;
  animation: floatBadge1 6s ease-in-out infinite;
}

.badge-right-top {
  top: 8%;
  right: 10%;
  padding: 15px 20px;
  border-radius: 16px;
  animation: floatBadge2 7s ease-in-out infinite;
}

.badge-left-bottom {
  bottom: 20%;
  left: 12%;
  padding: 14px 18px;
  animation: floatBadge3 5.5s ease-in-out infinite;
}

.badge-right-middle {
  top: 35%;
  right: 5%;
  animation: floatBadge4 6.5s ease-in-out infinite;
}

.badge-right-bottom {
  bottom: 15%;
  right: 8%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  animation: floatBadge5 5s ease-in-out infinite;
}

.badge-right-bottom .badge-text {
  color: #000;
  font-weight: 600;
}

.badge-right-bottom .badge-sparkle {
  color: #ec4899;
}

/* Floating animations */
@keyframes floatBadge1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes floatBadge2 {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(-12px) rotate(-1deg); }
}

@keyframes floatBadge3 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-18px) rotate(-2deg); }
}

@keyframes floatBadge4 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes floatBadge5 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-14px) rotate(-1deg); }
}

/* Hide badges on smaller screens */
@media (max-width: 1100px) {
  .floating-badge {
    display: none;
  }
}

.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: 5rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #ffffff;
  letter-spacing: 4px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Hero CTA Bar */
.hero-cta-bar {
  display: inline-flex;
  align-items: center;
  background: rgba(40, 40, 40, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 8px 8px 8px 28px;
  margin-top: 40px;
  gap: 20px;
}

.hero-cta-bar .cta-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-weight: 400;
}

.hero-cta-bar .cta-buy-btn {
  background: #ffffff;
  color: #000000;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hero-cta-bar .cta-buy-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.02);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}

.hero-stats .stats-stars {
  color: #ffd700;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.hero-stats .stats-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.hero-stats .stats-text strong {
  color: #ffffff;
}

/* ===== VIDEO SECTION ===== */
.video-section {
  padding: 100px 0;
  background: transparent;
}

.section-title {
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #ffffff;
  letter-spacing: 0;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  margin: 20px auto 0;
}

/* Video Rows */
.video-row {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.video-row.visible {
  opacity: 1;
  transform: translateY(0);
}

.video-row.reverse {
  flex-direction: row-reverse;
}

.video-card {
  flex: 2;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
}

.video-card::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  opacity: 1;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-card::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.35) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  pointer-events: none;
}

.video-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.25);
}

.video-card:hover::before {
  opacity: 0;
}

.video-card:hover::after {
  opacity: 1;
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-desc {
  flex: 1;
  padding: 40px;
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

/* Buy Button */
.buy-button {
  text-align: center;
  margin-top: 80px;
}

.btn-buy {
  display: inline-block;
  padding: 22px 70px;
  font-family: 'Nunito', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #000000;
  text-decoration: none;
  background: #ffffff;
  border-radius: 60px;
  box-shadow: 
    0 15px 50px rgba(255, 255, 255, 0.5),
    0 0 60px rgba(255, 255, 255, 0.3),
    inset 0 -3px 15px rgba(0, 0, 0, 0.3),
    inset 0 2px 5px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-buy::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-buy:hover::before {
  width: 300px;
  height: 300px;
}

.btn-buy::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.2), transparent);
  transform: rotate(45deg);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.btn-buy:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 
    0 20px 60px rgba(255, 255, 255, 0.7),
    0 0 80px rgba(255, 255, 255, 0.5),
    inset 0 -3px 15px rgba(0, 0, 0, 0.3),
    inset 0 2px 5px rgba(255, 255, 255, 0.3);
}

.btn-buy:active {
  transform: translateY(-5px) scale(1.02);
}

/* ===== REVIEWS SECTION (MINIMALIST STYLE FROM CSS2) ===== */
.reviews-section {
  padding: 100px 0;
  background: transparent;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.review-card {
  background: #000000;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  transition: all 0.3s ease;
  z-index: 1;
}

.review-card:hover {
  background: #0a0a0a;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.review-stars {
  color: #ffd700;
  font-size: 1.4rem;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.review-card p {
  font-family: 'Nunito', sans-serif;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 15px;
  font-style: normal;
  font-weight: 600;
}

.review-card span {
  font-family: 'Nunito', sans-serif;
  color: var(--primary-light);
  font-weight: 700;
  font-size: 0.95rem;
}

/* ===== PATCH SECTION (MINIMALIST STYLE FROM CSS2) ===== */
.patch-section {
  padding: 100px 0;
  background: transparent;
}

.patch-item {
  background: #000000;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0;
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
}

.patch-item:hover {
  padding-left: 20px;
  background: #0a0a0a;
}

.patch-item:last-child {
  border-bottom: none;
}

.patch-version {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.patch-item p {
  font-family: 'Nunito', sans-serif;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
  font-weight: 600;
}

/* ===== FAQ SECTION (MINIMALIST STYLE FROM CSS2) ===== */
.faq-section {
  padding: 100px 0;
  background: transparent;
}

.faq-item {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #000000;
  transition: background 0.2s ease;
  position: relative;
  z-index: 1;
}

.faq-item:hover {
  background: #0a0a0a;
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  background: transparent;
  border: none;
  font-family: 'Nunito', sans-serif;
  color: #ffffff;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-question:hover {
  opacity: 0.7;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: transparent;
  padding: 0;
  font-family: 'Nunito', sans-serif;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 60px 20px;
  background: transparent;
  font-family: 'Nunito', sans-serif;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .video-row {
    flex-direction: column !important;
    gap: 30px;
  }

  .video-card,
  .video-desc {
    flex: 1 1 100%;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .language-switcher {
    margin-left: 0;
    margin-top: 10px;
  }

  .nav a {
    font-size: 14px;
    padding: 8px 16px;
  }

  .hero {
    padding: 120px 20px 100px;
  }

  .hero-title {
    font-size: 2.8rem;
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .video-section,
  .reviews-section,
  .patch-section,
  .faq-section {
    padding: 80px 0;
  }

  .video-desc {
    padding: 30px;
    font-size: 1.05rem;
  }

  .btn-buy {
    font-size: 1.3rem;
    padding: 18px 50px;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .logo-img {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .logo-container {
    gap: 12px;
    padding: 6px 10px;
  }

  .logo-container:hover {
    transform: scale(1.05) translateY(-1px);
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .review-card,
  .patch-item {
    padding: 25px;
  }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: 100px 0;
  background: transparent;
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: #000000;
  padding: 45px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.pricing-card:hover {
  background: #0a0a0a;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-8px);
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

/* Featured card */
.pricing-card.featured {
  border-color: rgba(255, 255, 255, 0.25);
  background: #0a0a0a;
  transform: scale(1.08);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-8px);
}

.plan-name {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.plan-duration {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 15px;
}

.plan-price {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -1px;
  margin: 15px 0 25px 0;
}

.plan-features {
  list-style: none;
  padding: 25px 0;
  margin: 0 0 25px 0;
  flex-grow: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-features li {
  padding: 10px 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 400;
}

.pricing-card:hover .plan-features li {
  color: rgba(255, 255, 255, 0.9);
}

.select-plan {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 35px;
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.select-plan:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.select-plan.selected {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.pricing-card.featured .select-plan {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.pricing-card.featured .select-plan:hover {
  background: rgba(255,255,255,0.85);
}

/* Responsive */
@media (max-width: 968px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .pricing-card:nth-child(2) {
    transform: scale(1);
  }
  
  .pricing-card:nth-child(2):hover {
    transform: translateY(-8px);
  }
}

.header.scrolled {
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  background: rgba(0,0,0,0.95);
}
