/* ═══════════════════════════════════════════════════════════
   COMPARISON PAGE — comparison.css
   Premium glass-morphism styling for the price comparison page
   ═══════════════════════════════════════════════════════════ */

/* ── Keyframes ── */
@keyframes cmpFloat1{0%,100%{transform:translate(0,0) scale(1)}50%{transform:translate(30px,-40px) scale(1.08)}}
@keyframes cmpFloat2{0%,100%{transform:translate(0,0) scale(1)}50%{transform:translate(-25px,35px) scale(.94)}}
@keyframes cmpFadeUp{from{opacity:0;transform:translateY(28px)}to{opacity:1;transform:translateY(0)}}
@keyframes cmpPulse{0%,100%{box-shadow:0 0 20px rgba(59,130,246,.12)}50%{box-shadow:0 0 40px rgba(59,130,246,.24)}}

/* ── 1. HERO (premium dark — matches About & Contact heroes) ── */
.cmp-hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(7rem, 14vh, 10rem) 0 clamp(4rem, 8vw, 6.5rem);
  text-align: center;
  color: #fff;
  background:
    radial-gradient(92% 100% at 10% 10%, rgba(52, 121, 255, 0.24) 0%, rgba(10, 24, 59, 0) 60%),
    radial-gradient(90% 120% at 90% 86%, rgba(25, 92, 255, 0.20) 0%, rgba(10, 24, 59, 0) 58%),
    linear-gradient(145deg, #030916 0%, #06112a 36%, #08193d 62%, #030914 100%);
  border-bottom: 1px solid rgba(115, 167, 255, 0.22);
}
.cmp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(46, 107, 255, 0.22), transparent 22% 78%, rgba(31, 86, 215, 0.18)),
    repeating-linear-gradient(112deg, rgba(114, 169, 255, 0.07) 0 2px, rgba(114, 169, 255, 0) 2px 26px);
  opacity: 0.85;
}
.cmp-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
  z-index: -2;
  will-change: transform;
}
.cmp-hero__orb--1 {
  width: 520px; height: 520px;
  top: -150px; right: -90px;
  background: radial-gradient(circle, rgba(36, 126, 255, 0.55), rgba(36, 126, 255, 0) 70%);
  animation: cmpFloat1 18s ease-in-out infinite;
}
.cmp-hero__orb--2 {
  width: 400px; height: 400px;
  bottom: -110px; left: -70px;
  background: radial-gradient(circle, rgba(57, 166, 255, 0.42), rgba(57, 166, 255, 0) 70%);
  animation: cmpFloat2 22s ease-in-out infinite;
}
.cmp-hero .container { position: relative; z-index: 2; }

.cmp-hero__kicker {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #bcd6ff;
  margin-bottom: 1.25rem;
  background: rgba(90, 150, 240, 0.12);
  padding: .5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(140, 190, 255, 0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cmp-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(2.3rem, 5.2vw, 3.6rem);
  line-height: 1.12;
  color: #f4f8ff;
  margin-bottom: 1.2rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
.cmp-hero__title em {
  font-style: normal;
  color: #2f89ff;
  text-shadow: 0 0 26px rgba(57, 153, 255, 0.5);
}
.cmp-hero__desc {
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  color: rgba(216, 230, 255, 0.9);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.cmp-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cmp-hero__actions .btn {
  min-width: 180px;
}

/* ── 2. PACKAGE CARDS ── */
.cmp-cards {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #fff;
}
.cmp-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.cmp-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,.85) 0%, rgba(248,250,255,.65) 100%);
  border: 1px solid rgba(180,205,255,.5);
  border-radius: 20px;
  padding: 2.2rem 1.8rem 2rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 8px 32px rgba(10,31,63,.07),
    inset 0 1px 0 rgba(255,255,255,.7);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.cmp-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 48px rgba(10,31,63,.12),
    inset 0 1px 0 rgba(255,255,255,.7);
}

/* Featured card (Premium) */
.cmp-card--featured {
  background: linear-gradient(160deg, #0d2a5c 0%, #0A1F3F 100%);
  border-color: rgba(59,130,246,.4);
  box-shadow:
    0 12px 40px rgba(10,31,63,.22),
    inset 0 1px 0 rgba(255,255,255,.06);
  animation: cmpPulse 4s ease-in-out infinite;
}
.cmp-card--featured:hover {
  box-shadow:
    0 20px 56px rgba(10,31,63,.28),
    inset 0 1px 0 rgba(255,255,255,.06);
}
.cmp-card--featured .cmp-card__name,
.cmp-card--featured .cmp-card__price,
.cmp-card--featured .cmp-card__desc,
.cmp-card--featured .cmp-card__billing,
.cmp-card--featured .cmp-card__features li {
  color: #fff;
}
.cmp-card--featured .cmp-card__features li::before {
  color: #60a5fa;
}
.cmp-card--featured .cmp-card__btn {
  background: linear-gradient(135deg, #3b82f6, #1D5CB5);
  color: #fff;
  border-color: transparent;
}
.cmp-card--featured .cmp-card__btn:hover {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.cmp-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3b82f6, #1D5CB5);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem 1.2rem;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(29,92,181,.25);
}

.cmp-card__icon {
  width: 48px; height: 48px;
  margin-bottom: 1.2rem;
  color: #1D5CB5;
}
.cmp-card--featured .cmp-card__icon { color: #60a5fa; }
.cmp-card__icon svg { width: 100%; height: 100%; }

.cmp-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #0A1F3F;
  margin-bottom: .5rem;
}
.cmp-card__desc {
  font-size: .92rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.cmp-card__price-wrap { margin-bottom: 1.4rem; }
.cmp-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #0A1F3F;
  line-height: 1;
}
.cmp-card__billing {
  font-size: .82rem;
  color: #94a3b8;
  margin-top: .25rem;
}
.cmp-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  flex: 1;
}
.cmp-card__features li {
  position: relative;
  padding-left: 1.4rem;
  font-size: .88rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: .35rem;
}
.cmp-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1D5CB5;
  font-weight: 700;
}
.cmp-card__btn {
  display: block;
  text-align: center;
  padding: .75rem 1.4rem;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  border: 1.5px solid rgba(29,92,181,.2);
  color: #1D5CB5;
  background: rgba(29,92,181,.04);
  transition: all .25s ease;
}
.cmp-card__btn:hover {
  background: #1D5CB5;
  color: #fff;
  border-color: #1D5CB5;
}

/* ── 3. COMPARISON TABLES ── */
.cmp-tables {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
}
.cmp-tables__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.cmp-tables__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #0A1F3F;
  margin-bottom: .8rem;
}
.cmp-tables__title em {
  font-style: normal;
  background: linear-gradient(135deg, #1D5CB5, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cmp-tables__desc {
  font-size: 1rem;
  color: #64748b;
  max-width: 520px;
  margin: 0 auto;
}

/* Sticky table header */
.cmp-thead {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 0;
  background: #0A1F3F;
  color: #fff;
  border-radius: 14px 14px 0 0;
  padding: 1rem 1.4rem;
  position: sticky;
  top: 0;
  z-index: 20;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .85rem;
}
.cmp-thead__feature { text-align: left; }
.cmp-thead__pkg { text-align: center; }
.cmp-thead__pkg--featured {
  color: #60a5fa;
}

/* Feature groups */
.cmp-group {
  margin-bottom: 0;
  border-left: 1px solid rgba(180,205,255,.35);
  border-right: 1px solid rgba(180,205,255,.35);
}
.cmp-group:last-child {
  border-bottom: 1px solid rgba(180,205,255,.35);
  border-radius: 0 0 14px 14px;
  overflow: hidden;
}
.cmp-group__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #1D5CB5;
  padding: 1rem 1.4rem .6rem;
  background: linear-gradient(135deg, rgba(29,92,181,.06), rgba(59,130,246,.03));
  border-top: 1px solid rgba(180,205,255,.35);
  border-bottom: 1px solid rgba(180,205,255,.25);
  margin: 0;
}

/* Feature rows */
.cmp-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 0;
  padding: .75rem 1.4rem;
  border-bottom: 1px solid rgba(180,205,255,.2);
  align-items: center;
  transition: background .2s ease;
}
.cmp-row:hover {
  background: rgba(29,92,181,.03);
}
.cmp-row__feature {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .9rem;
  color: #334155;
  line-height: 1.5;
}

/* Info tooltip button */
.cmp-info {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: none;
  background: rgba(29,92,181,.08);
  border-radius: 50%;
  color: #1D5CB5;
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, color .2s ease;
}
.cmp-info svg {
  width: 12px;
  height: 12px;
}
.cmp-info:hover,
.cmp-info:focus {
  background: #1D5CB5;
  color: #fff;
  outline: none;
}

/* Tooltip */
.cmp-info::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  background: #0A1F3F;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 400;
  line-height: 1.5;
  padding: .6rem .9rem;
  border-radius: 8px;
  width: max-content;
  max-width: 280px;
  white-space: normal;
  box-shadow: 0 8px 24px rgba(10,31,63,.18);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
  z-index: 50;
}
.cmp-info::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: calc(100% + 2px);
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #0A1F3F;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
  z-index: 50;
}
.cmp-info:hover::after,
.cmp-info:focus::after,
.cmp-info.is-active::after,
.cmp-info:hover::before,
.cmp-info:focus::before,
.cmp-info.is-active::before {
  opacity: 1;
  visibility: visible;
}

/* Value cells */
.cmp-row__val {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cmp-row__val--yes {
  color: #1D5CB5;
}
.cmp-row__val--yes svg {
  width: 20px;
  height: 20px;
}
.cmp-row__val--no {
  color: #cbd5e1;
}
.cmp-row__val--no svg {
  width: 18px;
  height: 18px;
}
.cmp-row__val--text {
  font-size: .82rem;
  color: #475569;
  line-height: 1.4;
  padding: .2rem .5rem;
}
.cmp-row__val--highlight {
  font-size: .82rem;
  color: #1D5CB5;
  font-weight: 600;
  line-height: 1.4;
  padding: .2rem .5rem;
}

/* ── 4. ADD-ONS SECTION ── */
.cmp-addons {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  color: #fff;
  background:
    radial-gradient(90% 110% at 12% 6%, rgba(52, 121, 255, 0.20) 0%, rgba(10, 24, 59, 0) 58%),
    radial-gradient(86% 120% at 88% 92%, rgba(25, 92, 255, 0.16) 0%, rgba(10, 24, 59, 0) 56%),
    linear-gradient(145deg, #030916 0%, #06112a 38%, #08193d 64%, #030914 100%);
  border-top: 1px solid rgba(115, 167, 255, 0.22);
  border-bottom: 1px solid rgba(115, 167, 255, 0.22);
}
.cmp-addons::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background: repeating-linear-gradient(112deg, rgba(114, 169, 255, 0.06) 0 2px, rgba(114, 169, 255, 0) 2px 28px);
  opacity: 0.8;
}
.cmp-addons .container { position: relative; z-index: 1; }
.cmp-addons__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.6rem;
}
.cmp-addons__kicker {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #bcd6ff;
  margin-bottom: 1.1rem;
  background: rgba(90, 150, 240, 0.12);
  padding: .5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(140, 190, 255, 0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cmp-addons__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  color: #f4f8ff;
  margin-bottom: .8rem;
}
.cmp-addons__title em {
  font-style: normal;
  color: #2f89ff;
  text-shadow: 0 0 26px rgba(57, 153, 255, 0.5);
}
.cmp-addons__desc {
  font-size: 1rem;
  color: rgba(206, 224, 255, 0.82);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}
.cmp-addons__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  max-width: 920px;
  margin: 0 auto;
}

/* Add-on card (dark glass) */
.cmp-addon {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.03) 100%);
  border: 1px solid rgba(140, 190, 255, 0.22);
  border-radius: 20px;
  padding: 1.9rem 1.8rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(2, 9, 22, 0.25);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.cmp-addon:hover {
  transform: translateY(-6px);
  border-color: rgba(120, 180, 255, 0.6);
  box-shadow: 0 18px 44px rgba(15, 60, 150, 0.35), 0 0 0 1px rgba(120, 180, 255, 0.25);
}
.cmp-addon__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}
.cmp-addon__icon {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #8cc0ff;
  background: rgba(70, 130, 230, 0.16);
  border: 1px solid rgba(140, 190, 255, 0.3);
}
.cmp-addon__icon svg { width: 25px; height: 25px; }
.cmp-addon__price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #f4f8ff;
  background: rgba(70, 130, 230, 0.18);
  border: 1px solid rgba(140, 190, 255, 0.3);
  border-radius: 999px;
  padding: .35rem .85rem;
}
.cmp-addon__price span {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(206, 224, 255, 0.8);
}
.cmp-addon__name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #f4f8ff;
  margin-bottom: .35rem;
}
.cmp-addon__for {
  font-size: .92rem;
  color: rgba(206, 224, 255, 0.78);
  line-height: 1.6;
  margin: 0 0 1.3rem;
}
.cmp-addon__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
}
.cmp-addon__list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .9rem;
  color: rgba(216, 230, 255, 0.92);
  line-height: 1.5;
  margin-bottom: .55rem;
}
.cmp-addon__list li::before {
  content: '✓';
  color: #5aa0ff;
  font-weight: 700;
  flex-shrink: 0;
}
/* tooltip info buttons inside dark add-on cards */
.cmp-addon__list .cmp-info {
  color: #7fb3ff;
  margin-top: 1px;
  flex-shrink: 0;
  order: 2;
}
.cmp-addon__note {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #9cc4ff;
  margin: 0 0 1.3rem;
}
.cmp-addon__note span { color: #5aa0ff; }
.cmp-addon__btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: auto;
  align-self: flex-start;
  padding: .42rem 1.3rem .42rem .42rem;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  border: 1px solid rgba(154, 206, 255, 0.7);
  color: #f7fbff;
  background: linear-gradient(132deg, #1e84ff, #1b5be5);
  box-shadow: 0 14px 24px rgba(25, 89, 215, 0.45), 0 0 34px rgba(54, 141, 255, 0.44);
  transition: transform .25s ease, box-shadow .25s ease;
}
.cmp-addon__btn .btn-icon { width: 30px; height: 30px; }
.cmp-addon__btn .btn-icon svg { width: 16px; height: 16px; }
.cmp-addon__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 34px rgba(29, 99, 236, 0.54), 0 0 40px rgba(71, 159, 255, 0.56);
}

/* ── 5. DECISION GUIDE ── */
.cmp-guide {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
}
.cmp-guide__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.cmp-guide__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #0A1F3F;
  margin-bottom: .8rem;
}
.cmp-guide__title em {
  font-style: normal;
  background: linear-gradient(135deg, #1D5CB5, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cmp-guide__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.cmp-guide__card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, rgba(255,255,255,.92) 0%, rgba(248,250,255,.72) 100%);
  border: 1px solid rgba(180,205,255,.5);
  border-radius: 18px;
  padding: 2rem 1.7rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(10,31,63,.06);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.cmp-guide__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(91,160,255,.35), rgba(91,160,255,0) 55%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
}
.cmp-guide__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(10,31,63,.12);
  border-color: rgba(120,170,255,.7);
}
.cmp-guide__card:hover::before { opacity: 1; }
.cmp-guide__card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 2.2vw, 1.55rem);
  color: #0A1F3F;
  margin: 0 0 .7rem;
}
.cmp-guide__card p {
  font-size: .92rem;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 1.5rem;
}
.cmp-guide__link {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .02em;
  color: #f7fbff;
  text-decoration: none;
  padding: .34rem 1.1rem .34rem .34rem;
  border-radius: 999px;
  border: 1px solid rgba(154, 206, 255, 0.7);
  background: linear-gradient(132deg, #1e84ff, #1b5be5);
  box-shadow: 0 12px 22px rgba(25, 89, 215, 0.4), 0 0 26px rgba(54, 141, 255, 0.36);
  transition: transform .25s ease, box-shadow .25s ease;
}
.cmp-guide__link .btn-icon { width: 28px; height: 28px; }
.cmp-guide__link .btn-icon svg { width: 15px; height: 15px; }
.cmp-guide__link:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 18px 30px rgba(29, 99, 236, 0.5), 0 0 34px rgba(71, 159, 255, 0.5);
}
/* Featured (Premium) card */
.cmp-guide__card--featured {
  background: linear-gradient(155deg, #06112a 0%, #08193d 60%, #0a1f3f 100%);
  border-color: rgba(91,160,255,.45);
  box-shadow: 0 14px 40px rgba(6,17,42,.28);
}
.cmp-guide__card--featured::before {
  opacity: 1;
  background: linear-gradient(160deg, rgba(91,160,255,.6), rgba(91,160,255,0) 60%);
}
.cmp-guide__card--featured h3 { color: #f4f8ff; }
.cmp-guide__card--featured h3::after {
  content: 'Most popular';
  display: inline-block;
  margin-left: .6rem;
  vertical-align: middle;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #cfe2ff;
  padding: .25rem .55rem;
  border-radius: 999px;
  border: 1px solid rgba(91,160,255,.4);
  background: rgba(91,160,255,.14);
}
.cmp-guide__card--featured p { color: rgba(216,230,255,.82); }
.cmp-guide__card--featured .cmp-guide__link {
  color: #f7fbff;
  border-color: rgba(154, 206, 255, 0.7);
  background: linear-gradient(132deg, #1e84ff, #1b5be5);
}
.cmp-guide__card--featured .cmp-guide__link:hover {
  color: #fff;
}

/* ── 5b. COMBINED BANNERS — GUIDANCE + CORPORATE ── */
.cmp-banners {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  background: linear-gradient(180deg, #f7faff 0%, #eef3fb 100%);
}
.cmp-banners__stack {
  display: flex;
  flex-direction: column;
  gap: clamp(1.4rem, 3vw, 2.2rem);
}

.cmp-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  border-radius: 26px;
  color: #fff;
  background:
    radial-gradient(120% 140% at 85% 10%, rgba(47, 137, 255, 0.22) 0%, rgba(7, 31, 76, 0) 55%),
    linear-gradient(152deg, rgba(7, 31, 76, 0.96) 0%, rgba(5, 24, 62, 0.96) 100%);
  border: 1px solid rgba(112, 164, 255, 0.38);
  box-shadow: 0 30px 70px -28px rgba(6, 24, 64, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.cmp-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: repeating-linear-gradient(112deg, rgba(114, 169, 255, 0.06) 0 2px, rgba(114, 169, 255, 0) 2px 26px);
  opacity: 0.7;
}

/* ── Body ── */
.cmp-banner__body {
  padding: clamp(2rem, 4vw, 3.4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cmp-banner__kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  align-self: flex-start;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #bcd6ff;
  margin-bottom: 1.1rem;
  background: rgba(90, 150, 240, 0.14);
  padding: .5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(140, 190, 255, 0.34);
}
.cmp-banner__kicker svg { width: 16px; height: 16px; color: #8cc0ff; }
.cmp-banner__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  line-height: 1.1;
  color: #f4f8ff;
  margin: 0 0 .9rem;
  text-wrap: balance;
}
.cmp-banner__title em {
  font-style: normal;
  color: #2f89ff;
  text-shadow: 0 0 26px rgba(57, 153, 255, 0.5);
}
.cmp-banner__desc {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: rgba(216, 230, 255, 0.9);
  line-height: 1.7;
  margin: 0 0 1.4rem;
  max-width: 460px;
}
.cmp-banner__pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 0 0 1.6rem;
  padding: 0;
}
.cmp-banner__pills li {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .02em;
  color: #d8e6ff;
  background: rgba(90, 150, 240, 0.12);
  border: 1px solid rgba(140, 190, 255, 0.3);
  padding: .42rem .95rem;
  border-radius: 999px;
}
.cmp-banner__actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.cmp-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #f7fbff;
  background: linear-gradient(132deg, #1e84ff, #1b5be5);
  border: 1px solid rgba(154, 206, 255, 0.7);
  padding: .5rem 1.4rem .5rem .5rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 14px 24px rgba(25, 89, 215, 0.45), 0 0 34px rgba(54, 141, 255, 0.44);
  transition: transform .25s ease, box-shadow .25s ease;
}
.cmp-banner__btn:hover { transform: translateY(-2px); box-shadow: 0 22px 34px rgba(29, 99, 236, 0.54), 0 0 40px rgba(71, 159, 255, 0.56); }
.cmp-banner__note {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .88rem;
  color: rgba(206, 224, 255, 0.82);
}
.cmp-banner__note svg { width: 18px; height: 18px; color: #8cc0ff; flex: 0 0 auto; }

/* ── Media ── */
.cmp-banner__media {
  position: relative;
  min-height: 280px;
}
.cmp-banner__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* fade media into banner toward the text side */
.cmp-banner__media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(270deg, rgba(5, 24, 62, 0) 55%, rgba(5, 24, 62, 0.55) 85%, rgba(5, 24, 62, 0.96) 100%);
}
.cmp-banner__media--left::after {
  background: linear-gradient(90deg, rgba(5, 24, 62, 0) 55%, rgba(5, 24, 62, 0.55) 85%, rgba(5, 24, 62, 0.96) 100%);
}
/* corporate banner: media on the left column */
.cmp-banner--corporate { grid-template-columns: 0.95fr 1.05fr; }

@media (max-width: 860px) {
  .cmp-banner,
  .cmp-banner--corporate { grid-template-columns: 1fr; }
  .cmp-banner__media { min-height: 220px; order: -1; }
  .cmp-banner__media::after,
  .cmp-banner__media--left::after {
    background: linear-gradient(0deg, rgba(5, 24, 62, 0) 50%, rgba(5, 24, 62, 0.55) 82%, rgba(5, 24, 62, 0.96) 100%);
  }
}
@media (max-width: 480px) {
  .cmp-banner__actions { flex-direction: column; align-items: flex-start; gap: .8rem; }
  .cmp-banner__btn { width: 100%; justify-content: center; }
}


/* ── 6. FINAL CTA ── */
.cmp-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background: linear-gradient(135deg, #0A1F3F 0%, #0d2a5c 50%, #0A1F3F 100%);
  text-align: center;
  color: #fff;
}
.cmp-cta .container { position: relative; z-index: 2; }
.cmp-cta__inner { position: relative; z-index: 2; }
.cmp-cta__title,
.cmp-cta__inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #f4f8ff;
  margin-bottom: .8rem;
}
.cmp-cta__desc,
.cmp-cta__inner p {
  font-size: 1.05rem;
  color: rgba(216,230,255,.78);
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.cmp-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 7. RESPONSIVE ── */
@media (max-width: 1024px) {
  .cmp-cards__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
  .cmp-card { padding: 1.6rem 1.2rem; }
}
@media (max-width: 860px) {
  .cmp-cards__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .cmp-card--featured { order: -1; }

  .cmp-addons__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .cmp-guide__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Table: stacked cards on mobile */
  .cmp-thead { display: none; }
  .cmp-row {
    grid-template-columns: 1fr 1fr 1fr;
    padding: .75rem 1rem;
  }
  .cmp-row__feature {
    grid-column: 1 / -1;
    margin-bottom: .3rem;
    font-weight: 600;
    font-size: .85rem;
  }
  .cmp-row__val {
    font-size: .8rem;
  }
  .cmp-row__val::before {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .65rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: .15rem;
  }
  .cmp-row__val:nth-child(2)::before { content: 'Basic'; }
  .cmp-row__val:nth-child(3)::before { content: 'Standard'; }
  .cmp-row__val:nth-child(4)::before { content: 'Premium'; }
  .cmp-row__val { flex-direction: column; }

  /* Tooltip: on mobile, flip to below if near top */
  .cmp-info::after {
    max-width: 220px;
    font-size: .74rem;
  }
}
@media (max-width: 480px) {
  .cmp-hero__title { font-size: 1.8rem; }
  .cmp-card__price { font-size: 2rem; }
  .cmp-row { padding: .6rem .8rem; }
  .cmp-group__title { padding: .8rem .8rem .5rem; font-size: .72rem; }
}

/* ── 8. DATA-REVEAL ANIMATION ── */
/* Uses .is-visible from animations.js */
.cmp-tables [data-reveal],
.cmp-cards [data-reveal],
.cmp-addons [data-reveal],
.cmp-guide [data-reveal],
.cmp-cta [data-reveal],
.cmp-banners [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.cmp-tables [data-reveal].is-visible,
.cmp-cards [data-reveal].is-visible,
.cmp-addons [data-reveal].is-visible,
.cmp-guide [data-reveal].is-visible,
.cmp-cta [data-reveal].is-visible,
.cmp-banners [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
