.elementor-133 .elementor-element.elementor-element-072d241{--display:flex;}.elementor-133 .elementor-element.elementor-element-204ff364{--display:flex;}.elementor-133 .elementor-element.elementor-element-78e9138{--display:flex;}/* Start custom CSS for html, class: .elementor-element-cd91ad4 *//* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  color: #fff;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?w=1920&q=80');
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(5, 55, 25, 0.70);
  backdrop-filter: blur(1px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero h1 {
  font-size: 70px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 span {
  background: linear-gradient(to right, #22c55e, #16a34a);
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 22px;
  opacity: 0.9;
  max-width: 650px;
  margin: 0 auto 35px auto;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 34px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary {
  background: linear-gradient(to right, #22c55e, #16a34a);
  color: white;
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: white;
  color: #000;
}

.features {
  padding: 80px 20px;
  background: #f8f9fa;
  text-align: center;
}

.features h2 {
  font-size: 45px;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
}

.features h2 span {
  background: linear-gradient(to right, #22c55e, #16a34a);
  -webkit-background-clip: text;
  color: transparent;
}

.features p {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: 18px;
  padding: 35px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: #22c55e;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 16px;
  color: #555;
}

@media(max-width: 768px) {
  .hero h1 { font-size: 45px; }
  .hero p { font-size: 18px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-637b437 *//* SECTION BASE */
.plans-section {
  padding: 80px 20px;
  background: #f8f9fa;
  text-align: center;
}

.plans-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #111;
}

.plans-badge {
  display: inline-block;
  background: #dcfce7;
  color: #15803d;
  font-weight: 700;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.coming-soon {
  background: #eee;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 16px;
  border: 1px solid #ddd;
}

.plans-subtitle {
  color: #555;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 45px auto;
}

/* PLANS GRID */
.plans-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

/* PLAN CARD BASE */
.plan-card {
  background: white;
  border-radius: 18px;
  padding: 35px;
  border: 2px solid #d1d5db;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: #22c55e;
}

.plan-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: #111;
}

.price {
  margin: 10px 0 15px 0;
}

.price-value {
  font-size: 48px;
  font-weight: 800;
  color: #111;
}

.price-period {
  margin-left: 5px;
  color: #666;
}

.plan-desc {
  color: #555;
  font-size: 15px;
}

/* FEATURES LIST */
.features-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  text-align: left;
}

.features-list li {
  margin-bottom: 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-list li.ok::before {
  content: "✔";
  color: #16a34a;
  font-weight: bold;
}

.features-list li.no::before {
  content: "✖";
  color: #aaa;
}

/* BUTTONS */
.btn-outline-plan {
  display: block;
  width: 100%;
  padding: 12px 0;
  border: 2px solid #111;
  border-radius: 10px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline-plan:hover {
  background: #111;
  color: white;
}

/* PREMIUM CARD */
.premium {
  background: linear-gradient(to bottom right, #22c55e, #059669);
  color: white;
  border: none;
}

.premium-badge {
  background: #facc15;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  color: #111;
  margin-bottom: 10px;
  display: inline-block;
}

.white li {
  color: white;
}

.btn-premium {
  display: block;
  width: 100%;
  padding: 12px 0;
  border-radius: 10px;
  font-weight: 800;
  background: white;
  color: #15803d;
  text-decoration: none;
}

.btn-premium:hover {
  background: #f3f4f6;
}

.premium-note {
  margin-top: 12px;
  font-size: 12px;
  opacity: 0.9;
  color: white;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .plans-header h2 {
    font-size: 32px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-375286d *//* ===== FOOTER BASE ===== */
.mg-footer {
  background: linear-gradient(to bottom right, #0a0a0a, #111);
  padding: 80px 20px 40px;
  color: #fff;
  font-family: Inter, sans-serif;
}

/* CONTAINER */
.mg-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

/* LOGO */
.mg-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 700;
}

.mg-logo-icon {
  background: linear-gradient(135deg, #22c55e, #4ade80);
  padding: 10px;
  border-radius: 12px;
  font-size: 20px;
}

.mg-desc {
  margin: 15px 0 25px;
  color: #ccc;
  line-height: 1.6;
}

/* SOCIAL BUTTONS */
.mg-social {
  display: flex;
  gap: 12px;
}

.mg-social-btn {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  font-size: 20px;
}

.mg-social-btn:hover {
  background: #22c55e;
  transform: translateY(-3px);
}

/* COLUMN TITLES */
.mg-title {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 700;
}

/* LISTS */
.mg-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mg-list li {
  margin-bottom: 12px;
}

.mg-list a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
  font-size: 16px;
}

.mg-list a:hover {
  color: #22c55e;
}

/* BOTTOM BAR */
.mg-footer-bottom {
  border-top: 1px solid #222;
  margin-top: 50px;
  padding-top: 25px;
  text-align: center;
  color: #aaa;
  font-size: 14px;
}

.mg-bottom-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.mg-bottom-links a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.mg-bottom-links a:hover {
  color: #22c55e;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .mg-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .mg-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mg-social {
    justify-content: center;
  }
}/* End custom CSS */