:root {
  --primary-color: #059669;
  --primary-hover: #047857;
  --primary-glow: rgba(5, 150, 105, 0.15);
  --secondary-color: #0284c7;
  --accent-gradient: linear-gradient(135deg, #059669 0%, #10b981 50%, #0d9488 100%);
  --bg-color: #f1f5f9;
  --text-main: #1e293b;
  --text-secondary: #64748b;
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.9);
  --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --card-hover-shadow: 0 10px 25px rgba(5, 150, 105, 0.12);
  --glow-green: 0 0 15px rgba(5, 150, 105, 0.08);
}

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

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Canvas for Matrix Rain */
#matrixCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.6;
  pointer-events: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  color: var(--text-main);
}

h1 {
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  animation: gradientShift 3s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-gradient);
  margin: 1rem auto 0;
  border-radius: 2px;
}

p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navbar - Glassmorphism Enhanced */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(240, 242, 245, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo-img {
  height: 55px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.btn-telegram {
  background: linear-gradient(135deg, #0088cc 0%, #00a8e8 100%);
  color: white !important;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 136, 204, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-telegram::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-telegram:hover::before {
  left: 100%;
}

.btn-telegram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 136, 204, 0.45);
}

/* Hero Section - Enhanced */
.hero {
  padding-top: 160px;
  padding-bottom: 80px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 191, 99, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 90%;
  color: var(--text-secondary);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons - Premium Enhanced */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-gradient);
  background-size: 200% 200%;
  color: white;
  box-shadow: 0 10px 30px var(--primary-glow);
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 10px 30px var(--primary-glow); }
  50% { box-shadow: 0 10px 50px rgba(0, 191, 99, 0.5); }
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 191, 99, 0.5);
}

.btn-secondary {
  background: rgba(255,255,255,0.9);
  color: var(--text-main);
  border: 2px solid rgba(0, 191, 99, 0.3);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.btn-secondary:hover {
  background: #fff;
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Hero Image */
.hero-image {
  position: relative;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(0, 191, 99, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.hero-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-image img:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
  box-shadow: 0 40px 100px rgba(0, 191, 99, 0.25);
}

/* Announcement Banner - Enhanced */
.announcement-banner {
  margin: 2rem 0;
  padding: 2rem 0;
}

.announcement-content {
  background: var(--accent-gradient);
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 191, 99, 0.35);
  max-width: 1200px;
  margin: 0 auto;
}

.announcement-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.05) 10px,
    rgba(255,255,255,0.05) 20px
  );
  animation: slidePattern 20s linear infinite;
}

@keyframes slidePattern {
  0% { transform: translateX(0); }
  100% { transform: translateX(28px); }
}

.announcement-text {
  position: relative;
  z-index: 1;
}

.announcement-text h2 {
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.announcement-text h2::after {
  display: none;
}

.announcement-text p {
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.btn-announcement {
  background: white;
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.btn-announcement:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Features Section - Premium Cards */
.features {
  padding: 100px 0;
}

.premium-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.premium-feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.premium-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-feature-card:hover::before {
  opacity: 1;
}

.premium-feature-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--card-hover-shadow), var(--glow-green);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 191, 99, 0.3);
}

.premium-feature-image {
  margin-bottom: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
}

.premium-feature-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.premium-feature-card:hover .premium-feature-image img {
  transform: scale(1.05);
}

.premium-feature-content h3 {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.premium-feature-list li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.premium-feature-list li i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

/* Pricing Section - Enhanced */
.pricing {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(240, 242, 245, 0) 0%, rgba(0, 191, 99, 0.03) 100%);
}

.pricing-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-product-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  padding: 0;
  text-align: left;
  box-shadow: var(--card-shadow);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: row;
  overflow: hidden;
  align-items: center;
}

.pricing-product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-hover-shadow), var(--glow-green);
  border-color: rgba(0, 191, 99, 0.4);
}

.pricing-product-card.popular {
  border: 2px solid var(--primary-color);
  background: rgba(255, 255, 255, 0.75);
}

.pricing-product-card.popular::before {
  content: "RECOMENDADO";
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--accent-gradient);
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.pricing-product-image {
  width: 40%;
  background: linear-gradient(135deg, rgba(0, 191, 99, 0.08) 0%, rgba(0, 136, 204, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  height: 100%;
  min-height: 450px;
}

.pricing-product-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 300px;
  transition: transform 0.5s ease;
}

.pricing-product-card:hover .pricing-product-image img {
  transform: scale(1.08);
}

.pricing-product-content {
  width: 60%;
  padding: 3rem;
}

.pricing-product-content h3 {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin: 1rem 0;
  font-family: "Inter", sans-serif;
}

.product-features-list {
  text-align: left;
  margin: 2rem 0;
}

.product-features-list li {
  margin-bottom: 0.75rem;
  display: flex;
  gap: 10px;
  align-items: center;
}

.product-features-list li i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.pricing-product-content .btn {
  width: auto;
  min-width: 220px;
  justify-content: center;
}

/* Reseller Promo */
.reseller-promo-container {
  text-align: center;
  margin-top: 3rem;
}

.reseller-link {
  font-family: "Orbitron", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.reseller-link i {
  -webkit-text-fill-color: initial;
  background: none;
  color: var(--primary-color);
  font-size: 1.4rem;
}

.reseller-link:hover {
  transform: scale(1.05);
  letter-spacing: 1px;
}

/* Distributors Section */
.resellers, .tutorials {
  padding: 100px 0;
}

.distributor-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.distributor-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.distributor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.distributor-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-hover-shadow), var(--glow-green);
  border-color: rgba(0, 191, 99, 0.3);
}

.distributor-logo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 4px solid rgba(0, 191, 99, 0.2);
  transition: all 0.3s ease;
  object-fit: cover;
}

.distributor-card:hover .distributor-logo img {
  border-color: var(--primary-color);
  box-shadow: 0 0 25px var(--primary-glow);
}

.distributor-content h3 {
  margin-bottom: 0.5rem;
}

.distributor-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.distributor-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  min-width: 70px;
}

.social-link i {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
  transition: all 0.3s ease;
}

.social-link span {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.social-link:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.9);
}

.social-link.web:hover i { color: #f59e0b; }
.social-link.whatsapp:hover i { color: #25d366; }
.social-link.telegram:hover i { color: #0088cc; }

.social-link:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Tutorial Section */
.tutorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.tutorial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.tutorial-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: var(--card-hover-shadow), var(--glow-green);
  border-color: rgba(0, 191, 99, 0.3);
}

.tutorial-card iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

.video-thumbnail {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px var(--primary-glow);
  transition: all 0.3s ease;
}

.play-button i {
  color: white;
  font-size: 1.8rem;
  margin-left: 5px;
}

.video-thumbnail:hover img {
  transform: scale(1.1);
}

.video-thumbnail:hover .play-button {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 0 50px rgba(0, 191, 99, 0.6);
}

.tutorial-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.2rem;
  color: var(--text-main);
  font-family: "Orbitron", sans-serif;
}

.tutorial-card p {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Footer */
footer {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  padding: 3rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.footer-links {
  margin-bottom: 1.5rem;
}

.footer-links a {
  margin: 0 1rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

footer p {
  font-size: 0.9rem;
}

/* Floating Action Button */
.fab-telegram {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0088cc 0%, #00a8e8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 6px 25px rgba(0, 136, 204, 0.35);
  z-index: 100;
  transition: all 0.3s ease;
  animation: fabPulse 3s ease-in-out infinite;
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 6px 25px rgba(0, 136, 204, 0.35); }
  50% { box-shadow: 0 6px 40px rgba(0, 136, 204, 0.5); }
}

.fab-telegram:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 136, 204, 0.5);
}

/* Animated Tooltip */
.fab-tooltip {
  position: absolute;
  right: 75px;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d3748 100%);
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.fab-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #2d3748;
}

.fab-telegram:hover .fab-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
  .premium-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-wrapper, .premium-features-grid, .pricing-products-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-product-card {
    flex-direction: column;
  }
  
  .pricing-product-image, .pricing-product-content {
    width: 100%;
  }
  
  .pricing-product-image {
    min-height: 250px;
    padding: 2rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  .tutorial-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Register Button in Navbar ========== */
.btn-register {
  background: var(--primary-color) !important;
  color: #ffffff !important;
  padding: 0.7rem 2.2rem;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  text-decoration: none !important;
  box-shadow: 0 4px 10px rgba(5, 150, 105, 0.2);
  letter-spacing: 0.3px;
}

.btn-register:hover {
  background: var(--primary-hover) !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
}

/* Mobile Register Button */
.btn-register-mobile {
  display: none;
  width: 42px;
  height: 42px;
  background: var(--primary-color);
  color: white;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-register-mobile:hover {
  background: var(--primary-hover);
}

@media (max-width: 768px) {
  .btn-register-mobile {
    display: flex;
  }
}

/* ========== Register Modal ========== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--glass-bg);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  padding: 2.5rem;
  max-width: 420px;
  width: 90%;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2), var(--glow-green);
  transform: scale(0.9) translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.1);
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(220, 50, 50, 0.9);
  color: white;
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-logo {
  width: 80px;
  height: auto;
  margin-bottom: 1rem;
}

.modal-header h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-header h2::after {
  display: none;
}

.modal-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 1rem;
  color: var(--primary-color);
  font-size: 1.1rem;
  z-index: 2;
}

.form-group input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: white;
  transition: all 0.3s ease;
  color: #1a1a2e;
}

.form-group input::placeholder {
  color: #718096;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 191, 99, 0.15);
  background: white;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary-color);
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.form-checkbox label a {
  color: var(--primary-color);
  text-decoration: underline;
}

.form-status {
  padding: 0.75rem;
  border-radius: 10px;
  font-size: 0.9rem;
  text-align: center;
  min-height: 20px;
  transition: all 0.3s ease;
}

.form-status.error {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.form-status.success {
  background: rgba(0, 191, 99, 0.1);
  color: #00bf63;
  border: 1px solid rgba(0, 191, 99, 0.3);
}

.form-status.info {
  background: rgba(0, 136, 204, 0.1);
  color: #0088cc;
  border: 1px solid rgba(0, 136, 204, 0.3);
}

.btn-submit {
  background: var(--accent-gradient);
  background-size: 200% 200%;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-family: inherit;
  box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 191, 99, 0.5);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.modal-footer {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-footer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.modal-footer a {
  color: var(--primary-color);
  font-weight: 600;
}

/* Responsive Modal */
@media (max-width: 480px) {
  .modal-container {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .modal-header h2 {
    font-size: 1.5rem;
  }
  
  .form-group input {
    padding: 0.875rem 0.875rem 0.875rem 2.5rem;
  }
}
