.elementor-814 .elementor-element.elementor-element-b45b273{--display:flex;}.elementor-814 .elementor-element.elementor-element-b45b273:not(.elementor-motion-effects-element-type-background), .elementor-814 .elementor-element.elementor-element-b45b273 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#1A1C1D;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-814 .elementor-element.elementor-element-b45b273{--content-width:1200px;}}/* Start custom CSS for html, class: .elementor-element-caa0d0d */:root {
  --primary: #ff9900;
  --primary-light: #ffcc00;
  --dark: #1A1C1D;
  --dark-light: #2c2e30;
  --light: #ffffff;
  --gray: #f5f5f5;
  --text-light: rgba(255,255,255,0.8);
  --text-dark: #333333;
  --border-light: rgba(255,255,255,0.15);
  --animation-speed: 0.4s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}


.site-header {
  background-color: var(--dark);
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
}

.logo svg {
  margin-right: 0.5rem;
}

.main-nav ul {
  display: flex;
  list-style: none;
}

.main-nav ul li {
  margin-left: 1.5rem;
}

.main-nav ul li a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--animation-speed) ease;
  padding: 0.5rem 0;
  position: relative;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: var(--primary);
}

.main-nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--light);
  border-radius: 3px;
  transition: all 0.3s ease;
}


.membership-section {
  background: linear-gradient(to bottom, var(--dark) 0%, #1a1a1a 100%);
  padding: 5rem 2rem;
  color: white;
  position: relative;
  margin-top: 60px;
}

.membership-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  position: relative;
}

.animated-title {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  position: relative;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  0% {
    text-shadow: 0 0 5px rgba(255,153,0,0.2);
  }
  100% {
    text-shadow: 0 0 15px rgba(255,153,0,0.6), 0 0 30px rgba(255,153,0,0.4);
  }
}

.section-subtitle {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 2rem;
}

.title-accent {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.title-accent::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  100% {
    left: 100%;
  }
}

.plans-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.plan-card {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border-color: var(--primary);
}

.featured-plan {
  background: linear-gradient(135deg, rgba(255,153,0,0.25) 0%, rgba(40,40,40,0.4) 100%);
  transform: scale(1.05);
  border: 1px solid rgba(255,153,0,0.4);
  z-index: 2;
  box-shadow: 0 15px 35px rgba(255,153,0,0.2);
}

.featured-plan:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 50px rgba(255,153,0,0.3);
}

.plan-tag {
  position: absolute;
  top: 1rem;
  right: -2rem;
  transform: rotate(45deg);
  background: var(--primary);
  color: #000;
  padding: 0.3rem 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.plan-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.plan-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.plan-price {
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: white;
  margin-right: 5px;
}

.price-period {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 500;
}

.plan-features-list {
  margin-bottom: 2rem;
  list-style: none;
  padding: 0;
  flex-grow: 1;
}

.plan-features-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 1rem;
  color: white;
  font-size: 1.05rem;
}

.promo-feature {
  color: var(--primary) !important;
  font-weight: 600;
  border-bottom: 1px dashed rgba(255,153,0,0.4);
  padding-bottom: 8px;
  margin-bottom: 15px !important;
}

.plan-features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.plan-button {
  display: block;
  width: 100%;
  padding: 1rem;
  background: transparent;
  color: white;
  border: 2px solid var(--primary);
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.plan-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transition: all 0.4s cubic-bezier(.47,1.64,.41,.8);
  z-index: -1;
}

.plan-button:hover {
  color: #000;
}

.plan-button:hover::before {
  left: 0;
}

.guarantee-banner {
  display: flex;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,0.08);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.guarantee-icon {
  margin-right: 2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.guarantee-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: white;
}

.guarantee-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}/* End custom CSS */