.elementor-3115 .elementor-element.elementor-element-5ce643a{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-77d5e3f */:root {
  --primary: #142B4F;
  --secondary: #4A7CC7;
  --accent: #8BC53F;
  --text: #1F2A37;
  --bg: #F9FAFB;
}

* {
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

/* HERO */
.pricing-hero {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.pricing-hero h1 {
  font-size: 2.7rem;
  color: var(--primary);
}

.pricing-hero p {
  max-width: 650px;
  margin: 16px auto 0;
  font-size: 1.1rem;
}

/* SECTIONS */
.pricing-section {
  max-width: 1200px;
  margin: auto;
  padding: 70px 20px;
}

.pricing-section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 50px;
}

.pricing-section.alt {
  background: #ffffff;
}

/* GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARDS */
.pricing-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--secondary);
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.pricing-card h3 {
  font-size: 1.5rem;
}

.price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
}

.price span {
  font-size: 1rem;
  font-weight: 400;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.pricing-card ul li {
  margin-bottom: 12px;
}

/* INTERNATIONAL CARD */
.international-card {
  max-width: 460px;
  margin: auto;
  background: #ffffff;
  padding: 45px 35px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  text-align: center;
}

/* BUTTONS */
.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  line-height: 1.6; /* ✅ fixes cramped text */
  border: 2px solid var(--primary);
  background: #ffffff;
  color: var(--primary);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  border-color: var(--accent);
}

/* CTA */
.pricing-cta {
  background: var(--primary);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.pricing-cta h2 {
  font-size: 2.2rem;
}

.pricing-cta p {
  margin: 16px 0 30px;
}

.btn-solid {
  display: inline-block;
  padding: 14px 36px;
  background: #ffffff;
  color: var(--primary);
  border: 2px solid #ffffff;
  border-radius: 35px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* ✅ Hover contrast fix (no disappearing) */
.btn-solid:hover {
  color: #ffffff;
  border-color: #ffffff;
  background: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pricing-card.featured {
    transform: none;
  }
}/* End custom CSS */