.lg-section {
  background:
    radial-gradient(circle at top left, rgba(109,190,69,0.14), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.18), transparent 28%),
    linear-gradient(135deg, var(--lg-section-start) 0%, var(--lg-section-end) 100%);
  padding: 40px 20px;
}

.lg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.lg-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--lg-radius);
  padding: 38px 34px 30px;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(var(--lg-blur)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--lg-blur)) saturate(160%);
  box-shadow:
    0 18px 40px rgba(0,0,0,var(--lg-shadow-opacity)),
    inset 0 1px 0 rgba(255,255,255,0.30);
}

.lg-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.30) 0%,
      rgba(255,255,255,0.10) 18%,
      rgba(255,255,255,0.03) 45%,
      rgba(255,255,255,0) 100%
    );
}

.lg-card::after {
  content: "";
  position: absolute;
  top: -110px;
  left: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 68%);
  pointer-events: none;
  filter: blur(8px);
}

.lg-card--light {
  background: var(--lg-light-bg);
  border: 1px solid rgba(255,255,255,0.65);
  color: #111;
}

.lg-card--dark {
  background: var(--lg-dark-bg);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  box-shadow:
    0 20px 44px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.16);
}

.lg-card--featured {
  box-shadow:
    0 0 0 4px rgba(255,255,255,0.85),
    0 18px 40px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.16);
}

.lg-card h2,
.lg-card h3 {
  margin: 0 0 22px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

.lg-card--light h2,
.lg-card--light h3 {
  color: var(--lg-accent);
}

.lg-card--dark h2,
.lg-card--dark h3 {
  color: #fff;
}

.lg-price {
  font-size: 108px;
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 0.95;
  margin-bottom: 14px;
}

.lg-price::before {
  content: "€";
  font-size: 42px;
  font-weight: 700;
  margin-right: 8px;
  position: relative;
  top: -20px;
}

.lg-subline {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 36px;
}

.lg-list {
  margin: 0 0 42px;
}

.lg-list-item {
  position: relative;
  padding-left: 44px;
  margin-bottom: 18px;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 600;
}

.lg-list-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lg-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(91,177,51,0.35);
}

.lg-btn {
  margin-top: auto;
}

.lg-btn a,
a.lg-btn,
.lg-btn button {
  width: 100%;
  min-height: 66px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 22px;
  border-radius: 9px;
  text-decoration: none;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.lg-btn a:hover,
a.lg-btn:hover,
.lg-btn button:hover {
  transform: translateY(-2px);
}

.lg-btn--outline a,
a.lg-btn--outline,
.lg-btn--outline button {
  background: rgba(255,255,255,0.14);
  color: var(--lg-accent);
  border: 2px solid var(--lg-accent);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.30),
    0 8px 18px rgba(0,0,0,0.04);
}

.lg-btn--green a,
a.lg-btn--green,
.lg-btn--green button {
  background: var(--lg-accent);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 10px 22px rgba(59,123,20,0.28),
    inset 0 1px 0 rgba(255,255,255,0.16);
}

@media (max-width: 991px) {
  .lg-grid {
    grid-template-columns: 1fr;
  }

  .lg-card {
    min-height: auto;
    padding: 28px 24px 24px;
  }

  .lg-price {
    font-size: 82px;
  }

  .lg-price::before {
    font-size: 34px;
    top: -14px;
  }

  .lg-list-item {
    font-size: 18px;
  }

  .lg-subline,
  .lg-btn a,
  a.lg-btn,
  .lg-btn button {
    font-size: 18px;
  }
}
