/* =====================================================
   IncubaOS — Pricing page styles (additive to incubaos.css)
   ===================================================== */

.price-hero {
  background: linear-gradient(180deg, #0F1520 0%, #1A2233 100%);
  color: white;
  padding: 100px 0 140px;
  border-radius: 0 0 var(--r-2xl) var(--r-2xl);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.price-hero .container { position: relative; z-index: 1; }
.price-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-wrap: balance;
  margin: 14px auto 18px;
  max-width: 800px;
}
.price-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.price-toggle {
  display: inline-flex;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 4px;
  border-radius: var(--r-pill);
  margin-top: 32px;
  gap: 4px;
}
.price-toggle button {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.6);
  padding: 9px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 13.5px;
  transition: all .2s;
}
.price-toggle button.active {
  background: white;
  color: var(--charcoal);
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
}

/* Pull pricing cards up over the dark hero */
.price-stack {
  margin-top: -100px;
  position: relative;
  z-index: 2;
}

/* ===== SaaS Cards ===== */
.pk-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  align-items: stretch;
}
.pk {
  background: white;
  border: 1px solid var(--mist);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
.pk:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pk-featured {
  background: var(--charcoal);
  color: white;
  border-color: transparent;
  box-shadow: 0 30px 70px rgba(26,34,51,.25);
  transform: translateY(-12px);
}
.pk-featured:hover { transform: translateY(-16px); }
.pk-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(230,27,71,.4);
}
.pk-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}
.pk-featured .pk-name { color: var(--coral); }
.pk-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: 10px;
}
.pk-for {
  font-size: 13.5px;
  color: var(--slate);
  margin-bottom: 24px;
  min-height: 36px;
}
.pk-featured .pk-for { color: rgba(255,255,255,.6); }

.pk-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.pk-currency {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--slate);
}
.pk-featured .pk-currency { color: rgba(255,255,255,.55); }
.pk-amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--charcoal);
  line-height: 1;
}
.pk-featured .pk-amount { color: white; }
.pk-unit {
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
}
.pk-featured .pk-unit { color: rgba(255,255,255,.55); }
.pk-ttc {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--slate);
  font-weight: 500;
}
.pk-featured .pk-ttc { color: rgba(255,255,255,.55); }
.pk-ttc strong { color: var(--charcoal); font-weight: 600; }
.pk-featured .pk-ttc strong { color: white; }

.pk-cta {
  display: block;
  width: 100%;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 14px 20px;
  background: var(--grad);
  color: white;
  border: none;
  border-radius: var(--r-pill);
  text-align: center;
  font-weight: 600;
  font-size: 14.5px;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 6px 20px rgba(230,27,71,.25);
}
.pk-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(230,27,71,.4); }
.pk-cta-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--mist);
  box-shadow: none;
}
.pk-cta-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); box-shadow: none; }
.pk-featured .pk-cta-outline { color: white; border-color: rgba(255,255,255,.2); }
.pk-featured .pk-cta-outline:hover { background: white; color: var(--charcoal); border-color: white; }

.pk-divider {
  height: 1px;
  background: var(--mist);
  margin: 0 0 20px;
}
.pk-featured .pk-divider { background: rgba(255,255,255,.12); }

.pk-include {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pk-featured .pk-include { color: rgba(255,255,255,.5); }
.pk-list { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pk-list li {
  font-size: 13.5px;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
  color: var(--charcoal);
}
.pk-featured .pk-list li { color: rgba(255,255,255,.88); }
.pk-list li::before {
  content:'';
  position: absolute;
  left: 0; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--grad);
}
.pk-list li::after {
  content:'';
  position: absolute;
  left: 4px; top: 7px;
  width: 7px; height: 4px;
  border-left: 1.5px solid white;
  border-bottom: 1.5px solid white;
  transform: rotate(-45deg);
}
.pk-list li.tier { padding-left: 0; padding-top: 12px; margin-top: 12px; border-top: 1px dashed var(--mist); font-size: 12px; color: var(--slate); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.pk-list li.tier::before, .pk-list li.tier::after { display: none; }
.pk-featured .pk-list li.tier { border-top-color: rgba(255,255,255,.15); color: rgba(255,255,255,.45); }

.pk-limits {
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--cloud);
  border-radius: var(--r-md);
  font-size: 12.5px;
  color: var(--slate);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pk-featured .pk-limits {
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.65);
}
.pk-limit-row { display: flex; justify-content: space-between; gap: 8px; }
.pk-limit-row strong { color: var(--charcoal); font-weight: 600; }
.pk-featured .pk-limit-row strong { color: white; }

/* RTL */
html[dir="rtl"] .pk-list li { padding-left: 0; padding-right: 24px; }
html[dir="rtl"] .pk-list li::before { left: auto; right: 0; }
html[dir="rtl"] .pk-list li::after { left: auto; right: 4px; }

/* ===== Pilot section ===== */
.pilot-wrap {
  margin-top: 80px;
}
.pilot {
  background: white;
  border: 1.5px dashed var(--coral);
  border-radius: var(--r-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.pilot::before {
  content:'';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,90,110,.12), transparent 60%);
  pointer-events: none;
}
.pilot-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pilot-eyebrow::before {
  content:'';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 1.6s infinite;
}
.pilot h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 12px;
  text-wrap: balance;
}
.pilot p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 20px;
}
.pilot-points { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; }
.pilot-points li { font-size: 13px; color: var(--charcoal); display: flex; align-items: center; gap: 8px; }
.pilot-points li::before {
  content:'';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.pilot-priceBox {
  text-align: center;
  padding: 32px 24px;
  background: var(--cloud);
  border-radius: var(--r-lg);
  position: relative;
}
.pilot-priceBox .pk-currency { font-size: 16px; }
.pilot-priceBox .pk-amount { font-size: 44px; }
.pilot-priceBox .pk-ttc { margin-top: 10px; }
.pilot-priceBox .btn { margin-top: 18px; width: 100%; justify-content: center; }
.pilot-duration {
  display: inline-block;
  background: var(--charcoal);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}

/* ===== Internal Deployment section ===== */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head h2 { font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 14px; text-wrap: balance; }
.section-head p { font-size: 16px; color: var(--slate); line-height: 1.6; max-width: 580px; margin: 0 auto; text-wrap: pretty; }

.internal-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.internal-card {
  background: white;
  border: 1px solid var(--mist);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}
.internal-card.featured {
  background: linear-gradient(180deg, #1A2233 0%, #0F1520 100%);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.internal-card .pk-name { color: var(--primary); }
.internal-card.featured .pk-name { color: var(--coral); }
.internal-card .pk-title { font-size: 19px; margin-bottom: 4px; }
.internal-card .pk-for { font-size: 12.5px; margin-bottom: 22px; min-height: 32px; }
.internal-card.featured .pk-for { color: rgba(255,255,255,.6); }
.internal-prices { display: flex; flex-direction: column; gap: 16px; }
.internal-price-block {
  padding: 16px;
  background: var(--cloud);
  border-radius: var(--r-md);
  border: 1px solid var(--mist);
}
.internal-card.featured .internal-price-block {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
}
.ipb-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}
.internal-card.featured .ipb-label { color: rgba(255,255,255,.55); }
.ipb-amount {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--charcoal);
}
.internal-card.featured .ipb-amount { color: white; }
.ipb-ttc { font-size: 12px; color: var(--slate); margin-top: 4px; }
.internal-card.featured .ipb-ttc { color: rgba(255,255,255,.55); }

.internal-card .pk-cta { margin-top: 22px; margin-bottom: 0; }

.internal-incl {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.incl-card {
  background: white;
  border: 1px solid var(--mist);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.incl-card.excl { background: var(--cloud); }
.incl-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.incl-card.excl h4 { color: var(--slate); }
.incl-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
}
.incl-card .incl-icon { background: #E1F5E8; color: #1F7A3A; }
.incl-card.excl .incl-icon { background: var(--mist); color: var(--slate); }
.incl-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.incl-list li {
  font-size: 13px;
  color: var(--charcoal);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.incl-card.excl .incl-list li { color: var(--slate); }
.incl-list li::before {
  content:'';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #1F7A3A;
}
.incl-card.excl .incl-list li::before { background: var(--slate); }
html[dir="rtl"] .incl-list li { padding-left: 0; padding-right: 16px; }
html[dir="rtl"] .incl-list li::before { left: auto; right: 0; }

/* ===== Add-ons table ===== */
.addons-table-wrap {
  background: white;
  border: 1px solid var(--mist);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.addons-table {
  width: 100%;
  border-collapse: collapse;
}
.addons-table thead th {
  background: var(--cloud);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--mist);
}
html[dir="rtl"] .addons-table thead th { text-align: right; }
.addons-table thead th:nth-child(n+2) { text-align: right; }
html[dir="rtl"] .addons-table thead th:nth-child(n+2) { text-align: left; }
.addons-table tbody td {
  padding: 16px 20px;
  font-size: 14px;
  border-top: 1px solid var(--mist);
  vertical-align: middle;
}
.addons-table tbody tr:first-child td { border-top: none; }
.addons-table tbody tr:hover { background: var(--cloud); }
.addons-table .addon-name {
  font-weight: 600;
  color: var(--charcoal);
}
.addons-table .addon-name small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--slate);
  margin-top: 2px;
}
.addons-table td:nth-child(n+2) {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
}
html[dir="rtl"] .addons-table td:nth-child(n+2) { text-align: left; }
.addons-table td.muted { color: var(--slate); font-weight: 500; }

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  max-width: 960px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border: 1px solid var(--mist);
  border-radius: var(--r-md);
  padding: 22px 24px;
}
.faq-item h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.faq-item p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

/* ===== Compliance / Trust strip ===== */
.trust {
  background: var(--cloud);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--slate);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.trust-item svg { color: var(--primary); flex-shrink: 0; }
.trust-sep { width: 1px; height: 24px; background: var(--mist); }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .pk-grid, .internal-grid { grid-template-columns: 1fr; }
  .pk-featured, .internal-card.featured { transform: none; }
  .pk-featured:hover { transform: translateY(-2px); }
  .pilot { grid-template-columns: 1fr; padding: 32px; }
  .internal-incl { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .price-hero { padding: 72px 0 100px; }
  .price-stack { margin-top: -80px; }
  .pilot-points { grid-template-columns: 1fr; }
  .addons-table thead { display: none; }
  .addons-table tbody td { display: block; text-align: left !important; padding: 8px 20px; border: none; }
  .addons-table tbody td:first-child { padding-top: 16px; font-size: 15px; }
  .addons-table tbody td:last-child { padding-bottom: 16px; border-bottom: 1px solid var(--mist); }
  .addons-table tbody tr:first-child td:first-child { border-top: none; }
  .incl-list { grid-template-columns: 1fr; }
  .trust { padding: 20px; }
  .trust-sep { display: none; }
}
