/* ══════════════════════════════════════════════════
   iLAND — Packages / Pricing Page CSS
   ══════════════════════════════════════════════════ */

:root {
  --primary: #1240AB;
  --primary2: #1A54CE;
  --primary-light: #EEF4FD;
  --gold: #D9A232;
  --gold-light: #FFF8E7;
  --ink: #0F1C33;
  --muted: #5C6E87;
  --line: #E1E8F2;
  --bg: #F5F8FC;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(18,64,171,.09);
  --shadow-lg: 0 16px 48px rgba(18,64,171,.16);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'DM Sans', sans-serif; color: var(--ink); background: var(--bg); }

/* ── Hero ── */
.pkg-hero {
  background: linear-gradient(155deg, #071536, #0A2668);
  padding: 80px 5% 60px; text-align: center; position: relative; overflow: hidden;
}
.pkg-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 120%, rgba(201,150,63,.2), transparent);
}
.pkg-hero .eyebrow { font-size: 10px; letter-spacing: 2.5px; color: var(--gold); font-weight: 700; margin-bottom: 14px; position: relative; z-index: 2; }
.pkg-hero h1 { font: 700 44px/1.15 'Playfair Display', serif; color: #fff; margin-bottom: 16px; position: relative; z-index: 2; }
.pkg-hero p { font-size: 16px; color: rgba(255,255,255,.65); max-width: 560px; margin: 0 auto 36px; line-height: 1.7; position: relative; z-index: 2; }

/* Segment tabs */
.segment-tabs {
  display: flex; justify-content: center; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15); border-radius: 12px;
  padding: 5px; width: fit-content; margin: 0 auto; position: relative; z-index: 2;
}
.seg-tab {
  padding: 10px 28px; border-radius: 8px; border: none;
  background: transparent; color: rgba(255,255,255,.6);
  font-size: 14px; font-weight: 600; cursor: pointer; transition: .2s;
}
.seg-tab.active { background: var(--white); color: var(--primary); }

/* ── Main section ── */
.pkg-section { padding: 60px 5%; }
.pkg-section h2 { font: 700 32px 'Playfair Display', serif; color: var(--ink); margin-bottom: 8px; }
.pkg-section > p { color: var(--muted); margin-bottom: 40px; font-size: 15px; }

/* ── Plan cards ── */
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }

.plan-card {
  background: var(--white); border: 2px solid var(--line);
  border-radius: 18px; padding: 28px; transition: .25s;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.plan-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.plan-card.popular { border-color: var(--primary); transform: scale(1.03); box-shadow: var(--shadow-lg); }
.plan-card.certified { border-color: var(--gold); }
.plan-card.elite { border-color: var(--gold); }

.popular-badge {
  position: absolute; top: 16px; right: -28px;
  background: var(--primary); color: #fff; font-size: 9px; font-weight: 700;
  padding: 4px 36px; transform: rotate(35deg); letter-spacing: 1px;
}
.certified-badge {
  position: absolute; top: 16px; right: -28px;
  background: var(--gold); color: #fff; font-size: 9px; font-weight: 700;
  padding: 4px 36px; transform: rotate(35deg); letter-spacing: 1px;
}

.plan-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.plan-name { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.plan-tagline { font-size: 12px; color: var(--muted); margin-bottom: 20px; min-height: 36px; line-height: 1.5; }

.plan-price { margin-bottom: 6px; }
.plan-price .amount { font-size: 38px; font-weight: 700; color: var(--primary); line-height: 1; }
.plan-price .amount.gold { color: var(--gold); }
.plan-price .period { font-size: 13px; color: var(--muted); }
.plan-price .unit { font-size: 12px; color: var(--muted); display: block; margin-bottom: 20px; }

.plan-divider { border: none; border-top: 1px solid var(--line); margin: 20px 0; }

.plan-features { list-style: none; margin-bottom: 24px; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; padding: 5px 0; color: var(--ink);
}
.plan-features li i {
  color: var(--primary); flex: none; margin-top: 2px; font-size: 11px;
}
.plan-features li.no { color: var(--muted); }
.plan-features li.no i { color: var(--line); }

.plan-cta {
  width: 100%; padding: 13px; border-radius: 9px;
  font-size: 14px; font-weight: 700; cursor: pointer; transition: .2s;
  border: 2px solid var(--primary); background: var(--white); color: var(--primary);
}
.plan-cta:hover, .plan-card.popular .plan-cta {
  background: var(--primary); color: #fff;
}
.plan-card.certified .plan-cta, .plan-card.elite .plan-cta {
  border-color: var(--gold); color: var(--gold);
}
.plan-card.certified .plan-cta:hover, .plan-card.elite .plan-cta:hover {
  background: var(--gold); color: #fff;
}

/* ── Verification packages (one-time) ── */
.verify-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.verify-card {
  background: var(--white); border: 2px solid var(--line);
  border-radius: 18px; overflow: hidden; transition: .25s;
  box-shadow: var(--shadow);
}
.verify-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.verify-card.best { border-color: var(--primary); }
.verify-card.premium { border-color: var(--gold); }

.verify-card-header {
  padding: 28px; text-align: center;
}
.verify-card-header.green { background: linear-gradient(135deg, var(--primary-light), #d4ede1); }
.verify-card-header.blue { background: linear-gradient(135deg, #e8eef8, #d4dff0); }
.verify-card-header.gold { background: linear-gradient(135deg, var(--gold-light), #fde8c0); }

.verify-icon { font-size: 40px; margin-bottom: 12px; display: block; }
.verify-name { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.verify-price .amount { font-size: 36px; font-weight: 700; color: var(--primary); }
.verify-price.gold-price .amount { color: var(--gold); }
.verify-price .per { font-size: 13px; color: var(--muted); }
.verify-turnaround {
  font-size: 11px; color: var(--muted); margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.verify-turnaround i { color: var(--primary); }

.verify-card-body { padding: 24px; }
.verify-features { list-style: none; margin-bottom: 20px; }
.verify-features li { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; font-size: 13px; border-bottom: 1px solid var(--line); }
.verify-features li:last-child { border: none; }
.verify-features li i { color: var(--primary); flex: none; margin-top: 2px; font-size: 11px; }
.verify-cta {
  width: 100%; padding: 13px; border-radius: 9px;
  font-size: 14px; font-weight: 700; cursor: pointer; transition: .2s;
  background: var(--primary); color: #fff; border: none;
}
.verify-cta:hover { background: var(--primary2); }
.verify-card.premium .verify-cta { background: var(--gold); }
.verify-card.premium .verify-cta:hover { opacity: .9; }

/* ── What's included explainer ── */
.included-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 40px; }
.included-step { display: flex; gap: 16px; }
.included-step-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary-light); display: grid; place-items: center;
  font-size: 20px; flex: none; color: var(--primary);
}
.included-step h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.included-step p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

/* ── Comparison table ── */
.compare-wrap { overflow-x: auto; margin-top: 40px; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 700px; }
.compare-table th {
  background: var(--primary); color: #fff; padding: 16px 20px;
  font-size: 13px; text-align: center;
}
.compare-table th:first-child { text-align: left; border-radius: 10px 0 0 0; }
.compare-table th:last-child { border-radius: 0 10px 0 0; }
.compare-table td { padding: 14px 20px; border-bottom: 1px solid var(--line); font-size: 13px; text-align: center; }
.compare-table td:first-child { text-align: left; font-weight: 600; }
.compare-table tr:last-child td { border: none; }
.compare-table tr:nth-child(even) td { background: var(--bg); }
.compare-table .check { color: #22c55e; font-size: 16px; }
.compare-table .cross { color: #ef4444; font-size: 16px; }

/* ── FAQ ── */
.faq-section { padding: 60px 5%; background: var(--white); }
.faq-section h2 { font: 700 32px 'Playfair Display', serif; color: var(--ink); margin-bottom: 40px; text-align: center; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 1000px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden; background: var(--bg);
}
.faq-q {
  padding: 18px 20px; font-size: 14px; font-weight: 600;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: .2s;
}
.faq-q:hover { color: var(--primary); }
.faq-q i { color: var(--muted); transition: .2s; }
.faq-q.open i { transform: rotate(180deg); color: var(--primary); }
.faq-a { padding: 0 20px; font-size: 13px; color: var(--muted); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; }
.faq-a.open { max-height: 200px; padding-bottom: 18px; }

/* ── Responsive ── */
@media(max-width: 900px) { .plans-grid { grid-template-columns: 1fr 1fr; } .plan-card.popular { transform: none; } }
@media(max-width: 700px) {
  .verify-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
}
@media(max-width: 580px) { .plans-grid { grid-template-columns: 1fr; } .pkg-hero h1 { font-size: 32px; } }
