/* ===== PLANS PAGE ===== */

.plans-hero {
  background: #001b5e;
  padding: 64px 24px 56px;
  text-align: center;
}
.plans-hero__inner {
  max-width: 700px;
  margin: 0 auto;
}
.plans-hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin: 0 0 12px;
}
.plans-hero__title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.15;
}
.plans-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin: 0 0 28px;
  line-height: 1.6;
}
.plans-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.plans-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
}

.plans-section {
  padding: 64px 24px;
  background: #f4f6fb;
}
.plans-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
@media (max-width: 860px) {
  .plans-section__inner {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

.plan-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}
.plan-card--featured {
  border-color: #001b5e;
  box-shadow: 0 8px 32px rgba(0,27,94,0.2);
  transform: translateY(-8px);
}
.plan-card__popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #e85d04;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-card__header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8ecf4;
}
.plan-card__name {
  font-family: 'Lato', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: #001b5e;
  margin: 0 0 16px;
}
.plan-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 6px;
}
.plan-card__amount {
  font-family: 'Lato', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #001b5e;
  line-height: 1;
}
.plan-card__period {
  font-size: 1rem;
  color: #6b7a99;
  font-weight: 600;
}
.plan-card__tagline {
  font-size: 0.85rem;
  color: #6b7a99;
  margin: 0;
}
.plan-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-card__features li {
  font-size: 0.95rem;
  color: #2d3a55;
  padding-left: 26px;
  position: relative;
  line-height: 1.5;
}
.plan-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 900;
}
.plan-card__footer {
  text-align: center;
}

.plan-card__note {
  text-align: center;
  font-size: 0.78rem;
  color: #6b7a99;
  margin: 12px 0 0;
  line-height: 1.4;
}

.plan-btn {
  display: block;
  width: 100%;
  padding: 13px 20px;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
  box-sizing: border-box;
}
.plan-btn--primary {
  background: #e85d04;
  color: #fff;
  border: 2px solid #e85d04;
}
.plan-btn--primary:hover { opacity: 0.88; }
.plan-btn--outline {
  background: transparent;
  color: #001b5e;
  border: 2px solid #001b5e;
}
.plan-btn--outline:hover {
  background: #001b5e;
  color: #fff;
}
.plan-btn--white {
  background: #fff;
  color: #e85d04;
  border: 2px solid #fff;
  display: inline-block;
  width: auto;
  padding: 14px 36px;
}
.plan-btn--white:hover { opacity: 0.9; }

.plans-landlord {
  padding: 8px 24px 56px;
  background: #fff;
}
.plans-landlord__inner {
  max-width: 760px;
  margin: 0 auto;
  background: #f4f6fb;
  border: 2px solid #001b5e;
  border-radius: 16px;
  padding: 40px 36px;
  text-align: center;
}
.plans-landlord__badge {
  display: inline-block;
  background: #001b5e;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.plans-landlord__title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  font-weight: 900;
  color: #001b5e;
  margin: 0 0 16px;
  line-height: 1.25;
}
.plans-landlord__text {
  font-size: 1rem;
  color: #2d3a55;
  line-height: 1.6;
  margin: 0 auto 24px;
  max-width: 620px;
}
.plans-landlord__points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: inline-block;
  text-align: left;
}
.plans-landlord__points li {
  font-size: 0.95rem;
  color: #2d3a55;
  padding-left: 26px;
  position: relative;
  line-height: 1.6;
  margin-bottom: 10px;
}
.plans-landlord__points li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 900;
}
.plans-landlord__btn {
  display: inline-block;
  width: auto;
  padding: 14px 32px;
}
.plans-landlord__note {
  font-size: 0.82rem;
  color: #6b7a99;
  margin: 14px 0 0;
}
@media (max-width: 480px) {
  .plans-landlord__inner { padding: 32px 20px; }
}

.plans-why {
  padding: 64px 24px;
  background: #fff;
}
.plans-why__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.plans-why__title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #001b5e;
  text-align: center;
  margin: 0 0 48px;
}
.plans-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 860px) {
  .plans-why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .plans-why__grid { grid-template-columns: 1fr; }
}
.plans-why__item { text-align: center; }
.plans-why__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}
.plans-why__item h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: #001b5e;
  margin: 0 0 8px;
}
.plans-why__item p {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

.plans-faq {
  padding: 64px 24px;
  background: #f4f6fb;
}
.plans-faq__inner {
  max-width: 720px;
  margin: 0 auto;
}
.plans-faq__title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: #001b5e;
  text-align: center;
  margin: 0 0 40px;
}
.plans-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  overflow: hidden;
}
.faq-item__q {
  display: block;
  padding: 18px 48px 18px 22px;
  font-weight: 700;
  color: #001b5e;
  cursor: pointer;
  font-size: 0.97rem;
  list-style: none;
  position: relative;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: #001b5e;
}
details[open] .faq-item__q::after { content: "\2212"; }
.faq-item__a {
  padding: 0 22px 18px;
  font-size: 0.93rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}
.faq-item__a a {
  color: #001b5e;
  font-weight: 700;
}

.plans-cta {
  background: #e85d04;
  padding: 56px 24px;
  text-align: center;
}
.plans-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}
.plans-cta__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 8px;
}
.plans-cta__text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 28px;
  line-height: 1.5;
}

.footer {
  background: #001b5e;
  padding: 24px;
  text-align: center;
}
.footer__inner { display: block; max-width: 1100px; margin: 0 auto; }
.footer__sponsors {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 14px;
}
.footer__sponsor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  text-decoration: none;
  flex-wrap: wrap;
}
.footer__sponsor:hover { color: #fff; }
.footer__sponsor strong { color: rgba(255,255,255,0.95); }
.footer__sponsor-logo {
  height: 26px;
  width: auto;
  display: inline-block;
}
.footer__sponsor-logo--crest {
  height: 34px;
}
.footer__copy {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin: 0;
}
