/* ============================================================
   BBM SHOP — PACKAGES PAGE (dedicated sections)
   Light theme, --cu-* tokens (indigo #4F46E5, no gradients on
   solid fills — soft radial glows only, matching .ab-hero pattern).
   Mobile / tablet / desktop responsive. Scroll-reveal + hover
   micro-animations throughout.
   ============================================================ */

/* ---------- Scroll reveal (shared by every section below) ---------- */
.pk-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.pk-reveal.pk-in {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .pk-reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   1. HERO BANNER — full width, medium height, 2-col split
   ============================================================ */
.pk-hero {
    background: var(--cu-bg);
    padding: 56px 24px 64px;
    position: relative;
    overflow: hidden;
}
.pk-hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -80px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(79,70,229,0.08), transparent 70%);
    pointer-events: none;
}
.pk-hero-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
}
.pk-hero-left h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--cu-text);
    margin: 16px 0 18px;
}
.pk-hero-left p {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--cu-text-secondary);
    margin: 0 0 26px;
    max-width: 480px;
}
.pk-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    background: var(--cu-accent);
    color: #fff;
    font-weight: 600;
    font-size: 14.5px;
    padding: 13px 26px;
    border-radius: var(--cu-radius);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(79,70,229,0.28);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.pk-hero-btn:hover { background: var(--cu-accent-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(79,70,229,0.34); }
.pk-hero-btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.2s ease; }
.pk-hero-btn:hover svg { transform: translateX(3px); }
.pk-guarantee-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--cu-surface);
    border: 1px solid var(--cu-border);
    border-radius: var(--cu-radius-lg);
    padding: 20px 24px;
    margin-bottom: 26px;
    max-width: 460px;
    box-shadow: var(--cu-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pk-guarantee-card:hover { transform: translateY(-2px); box-shadow: var(--cu-shadow-hover); }
.pk-guarantee-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--cu-success-soft);
    color: var(--cu-success);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.pk-guarantee-icon svg { width: 20px; height: 20px; }
.pk-guarantee-text { min-width: 0; }
.pk-guarantee-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--cu-success);
    background: var(--cu-success-soft);
    padding: 3px 9px;
    border-radius: 999px;
    margin-bottom: 8px;
}
.pk-guarantee-text strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--cu-text);
    margin-bottom: 4px;
}
.pk-guarantee-text p {
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--cu-text-secondary);
    margin: 0;
}
.pk-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
}
.pk-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--cu-text-secondary);
    font-weight: 500;
}
.pk-hero-badge-icon {
    width: 17px; height: 17px;
    border-radius: 50%;
    background: var(--cu-accent-soft);
    color: var(--cu-accent);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.pk-hero-badge-icon svg { width: 9px; height: 9px; }

/* -- Right side mock dashboard card -- */
.pk-hero-visual {
    background: var(--cu-surface);
    border: 1px solid var(--cu-border);
    border-radius: var(--cu-radius-lg);
    box-shadow: var(--cu-shadow-hover);
    overflow: hidden;
    animation: pkFloatCard 5s ease-in-out infinite;
}
@keyframes pkFloatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.pk-hero-visual-topbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 13px 16px;
    background: var(--cu-text);
    border-bottom: 1px solid var(--cu-border);
}
.pk-dot { width: 9px; height: 9px; border-radius: 50%; }
.pk-dot.red { background: #F87171; }
.pk-dot.yellow { background: #FBBF24; }
.pk-dot.green { background: #34D399; }
.pk-hero-visual-url {
    flex: 1;
    text-align: center;
    font-size: 11.5px;
    color: rgba(255,255,255,0.55);
    font-family: monospace;
}
.pk-hero-visual-body { padding: 18px 20px; }
.pk-hvs-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.pk-hvs-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--cu-accent-soft);
    display: flex; align-items: center; justify-content: center;
    color: var(--cu-accent);
    flex-shrink: 0;
}
.pk-hvs-icon svg { width: 18px; height: 18px; }
.pk-hvs-head strong { font-size: 14.5px; color: var(--cu-text); display: block; }
.pk-hvs-head span { font-size: 12px; color: var(--cu-success); display: flex; align-items: center; gap: 4px; margin-top: 2px; }
.pk-hvs-head span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cu-success); display: inline-block; }
.pk-hvs-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--cu-border);
}
.pk-hvs-stats div { text-align: left; }
.pk-hvs-stats .k { font-size: 10.5px; color: var(--cu-text-muted); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.pk-hvs-stats .v { font-size: 14.5px; font-weight: 700; color: var(--cu-text); }
.pk-hvs-site {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}
.pk-hvs-site-icon {
    width: 30px; height: 30px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}
.pk-hvs-site-info { flex: 1; min-width: 0; }
.pk-hvs-site-info strong { font-size: 13px; color: var(--cu-text); display: block; }
.pk-hvs-site-info span { font-size: 11px; color: var(--cu-text-muted); }
.pk-hvs-ssl {
    font-size: 10px;
    font-weight: 700;
    color: var(--cu-success);
    background: var(--cu-success-soft);
    padding: 2px 7px;
    border-radius: 999px;
    flex-shrink: 0;
}
.pk-hvs-stack {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--cu-border);
}
.pk-hvs-stack-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--cu-text-muted);
    flex-shrink: 0;
}
.pk-hvs-stack-items {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 11.5px;
    color: var(--cu-text-secondary);
}
.pk-hvs-stack-items span { display: flex; align-items: center; gap: 5px; }
.pk-hvs-stack-items span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cu-accent); flex-shrink: 0; }

.pk-hvs-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    margin: 16px -20px -18px;
    padding: 16px 20px 18px;
    background: var(--cu-bg);
    border-top: 1px solid var(--cu-border);
    border-radius: 0 0 var(--cu-radius-lg) var(--cu-radius-lg);
}
.pk-hvs-badges .pk-hero-badge { font-size: 12px; }

@media (max-width: 900px) {
    .pk-hero-inner { grid-template-columns: 1fr; gap: 36px; }
    .pk-hero-left p { max-width: none; }
}
@media (max-width: 600px) {
    .pk-hero { padding: 40px 16px 44px; }
    .pk-hero-left h1 { font-size: clamp(24px, 7vw, 30px); }
    .pk-guarantee-card { max-width: none; padding: 16px 18px; gap: 12px; }
    .pk-guarantee-icon { width: 34px; height: 34px; }
    .pk-guarantee-text strong { font-size: 14px; }
    .pk-hero-visual-body { padding: 16px; }
    .pk-hvs-stats { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .pk-hvs-stats .v { font-size: 13px; }
    .pk-hvs-site-info strong { font-size: 12.5px; }
    .pk-hvs-badges { grid-template-columns: 1fr; gap: 10px; margin: 14px -16px -16px; padding: 14px 16px 16px; }
}

/* ============================================================
   2. TECHNOLOGY PARTNERS STRIP
   ============================================================ */
.pk-partners {
    background: var(--cu-surface);
    border-top: 1px solid var(--cu-border);
    border-bottom: 1px solid var(--cu-border);
    padding: 36px 24px;
}
.pk-partners-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}
.pk-partners-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(20px, 2.6vw, 26px);
    font-weight: 700;
    color: var(--cu-text);
    letter-spacing: normal;
    text-transform: none;
}
.pk-partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.pk-partner-logo-img {
    height: 28px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    transition: transform 0.2s ease;
}
.pk-partner-logo-img:hover {
    transform: translateY(-2px);
}

@media (max-width: 700px) {
    .pk-partners { padding: 28px 16px; }
    .pk-partners-inner { gap: 14px; }
    .pk-partners-logos { gap: 24px; }
    .pk-partner-logo-img { height: 22px; max-width: 100px; }
}
@media (max-width: 420px) {
    .pk-partners-logos { gap: 18px 22px; }
    .pk-partner-logo-img { height: 19px; max-width: 84px; }
}

/* ============================================================
   3. PRICING SECTION (cards + comparison table, same section)
   ============================================================ */
.pk-pricing-note {
    text-align: center;
    font-size: 13.5px;
    color: var(--cu-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: -6px 0 28px;
}
.pk-pricing-note svg { width: 15px; height: 15px; color: var(--cu-success); }

/* -- Comparison table -- */
.pk-compare-wrap {
    margin-top: 48px;
    overflow-x: auto;
    border: 1px solid var(--cu-border);
    border-radius: var(--cu-radius-lg);
    background: var(--cu-surface);
    box-shadow: var(--cu-shadow);
}
.pk-compare {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
    font-size: 13.5px;
}
.pk-compare th, .pk-compare td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--cu-border);
    white-space: nowrap;
}
.pk-compare thead th {
    background: var(--cu-bg);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13.5px;
    color: var(--cu-text);
    font-weight: 700;
}
.pk-compare thead th:first-child { border-top-left-radius: var(--cu-radius-lg); }
.pk-compare thead th:last-child { border-top-right-radius: var(--cu-radius-lg); }
.pk-compare tbody th {
    font-weight: 500;
    color: var(--cu-text-secondary);
}
.pk-compare tbody td {
    color: var(--cu-text);
    font-weight: 600;
}
.pk-compare tbody tr:last-child th,
.pk-compare tbody tr:last-child td { border-bottom: none; }
.pk-compare tbody tr:hover { background: var(--cu-bg); }
.pk-compare .pk-compare-featured {
    background: var(--cu-accent-soft);
}
.pk-compare-check { color: var(--cu-success); }
.pk-compare-check svg { width: 15px; height: 15px; }

/* ============================================================
   4/6/8. GENERIC CARD GRID (Included / Licensed Stack / Feature grid)
   Reused across three sections with different column counts.
   ============================================================ */
.pk-grid-3 { grid-template-columns: repeat(3, 1fr); }
.pk-grid-4 { grid-template-columns: repeat(4, 1fr); }
.pk-card-grid {
    display: grid;
    gap: 18px;
    max-width: 1240px;
    margin: 0 auto;
}
.pk-mini-card {
    background: var(--cu-surface);
    border: 1px solid var(--cu-border);
    border-radius: var(--cu-radius);
    padding: 20px 20px 22px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.pk-mini-card:hover {
    transform: translateY(-3px);
    border-color: var(--cu-accent);
    box-shadow: var(--cu-shadow-hover);
}
.pk-mini-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--cu-accent-soft);
    color: var(--cu-accent);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.pk-mini-icon svg { width: 19px; height: 19px; }
.pk-mini-card strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14.5px;
    color: var(--cu-text);
    margin-bottom: 6px;
}
.pk-mini-card p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--cu-text-secondary);
    margin: 0;
}
/* Brand-logo variant (Licensed Stack section) */
.pk-mini-card .pk-brand-logo {
    height: 22px;
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--cu-text);
    gap: 6px;
}
.pk-mini-card .pk-brand-logo svg { width: 20px; height: 20px; color: var(--cu-accent); }
.pk-mini-card .pk-brand-logo img { height: 22px; width: auto; max-width: 140px; object-fit: contain; }
.pk-mini-card .pk-brand-logo img[alt="CloudLinux OS"] { height: 30px; }
.pk-brand-logo-fallback { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700; }

@media (max-width: 900px) {
    .pk-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .pk-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .pk-grid-4, .pk-grid-3 { grid-template-columns: 1fr; }
}

/* ============================================================
   5. WORDPRESS TOOLKIT SPOTLIGHT
   ============================================================ */
.pk-wp-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: start;
}
.pk-wp-left h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    line-height: 1.3;
    color: var(--cu-text);
    margin: 14px 0 16px;
}
.pk-wp-left p {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--cu-text-secondary);
    margin: 0 0 24px;
}
.pk-wp-checks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pk-wp-check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--cu-text);
    font-weight: 500;
    line-height: 1.4;
}
@media (min-width: 641px) {
    .pk-wp-check-item { align-items: center; white-space: nowrap; }
}
.pk-wp-check-icon {
    width: 26px; height: 26px;
    border-radius: 8px;
    background: var(--cu-accent-soft);
    color: var(--cu-accent);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.pk-wp-check-icon svg { width: 14px; height: 14px; }

/* -- Right visual: mock WP Toolkit panel -- */
.pk-wp-visual {
    background: var(--cu-surface);
    border: 1px solid var(--cu-border);
    border-radius: var(--cu-radius-lg);
    box-shadow: var(--cu-shadow-hover);
    overflow: hidden;
}
.pk-wp-visual-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--cu-border);
}
.pk-wp-visual-head strong { font-size: 14.5px; color: var(--cu-text); display: block; }
.pk-wp-visual-head span { font-size: 12px; color: var(--cu-text-muted); }
.pk-wp-included-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--cu-success);
    background: var(--cu-success-soft);
    padding: 5px 12px;
    border-radius: 6px;
    white-space: nowrap;
}
.pk-wp-visual-body { padding: 18px 20px; }
.pk-wp-site-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--cu-bg);
    border-radius: var(--cu-radius);
    margin-bottom: 14px;
}
.pk-wp-site-thumb {
    width: 44px; height: 44px;
    border-radius: 8px;
    background: var(--cu-accent-soft);
    display: flex; align-items: center; justify-content: center;
    color: var(--cu-accent);
    flex-shrink: 0;
}
.pk-wp-site-thumb svg { width: 20px; height: 20px; }
.pk-wp-site-meta { flex: 1; min-width: 0; }
.pk-wp-site-meta strong { font-size: 13.5px; color: var(--cu-text); display: block; }
.pk-wp-site-meta span { font-size: 11.5px; color: var(--cu-text-muted); }
.pk-wp-status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}
.pk-wp-status-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
    padding: 6px 0;
    border-bottom: 1px dashed var(--cu-border);
}
.pk-wp-status-item .k { color: var(--cu-text-muted); }
.pk-wp-status-item .v { color: var(--cu-text); font-weight: 600; }
.pk-wp-status-item .v.ok { color: var(--cu-success); }
.pk-wp-footer-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 1px solid var(--cu-border);
}
.pk-wp-footer-tabs div {
    padding: 14px 12px;
    text-align: center;
    font-size: 11px;
    color: var(--cu-text-muted);
    border-right: 1px solid var(--cu-border);
}
.pk-wp-footer-tabs div:last-child { border-right: none; }
.pk-wp-footer-tabs strong { display: block; font-size: 13px; color: var(--cu-text); font-weight: 700; margin-bottom: 3px; }

.pk-wp-visual-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    max-width: 100%;
    border-top: 1px solid var(--cu-border);
}

@media (max-width: 900px) {
    .pk-wp-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
    .pk-wp-left h2 { font-size: clamp(20px, 6vw, 26px); }
    .pk-wp-visual-head { padding: 14px 16px; }
    .pk-wp-included-tag { font-size: 10px; padding: 3px 8px; }
}

/* ============================================================
   9. TECHNICAL SPECIFICATIONS (reuses .pk-card-grid / .pk-mini-card)
   ============================================================ */
.pk-specs-note {
    text-align: center;
    font-size: 12.5px;
    color: var(--cu-text-muted);
    max-width: 640px;
    margin: 28px auto 0;
    line-height: 1.6;
}

/* ============================================================
   10. ONE-CLICK APP INSTALLS
   ============================================================ */
.pk-apps-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}
.pk-app-tile {
    width: 118px;
    background: var(--cu-surface);
    border: 1px solid var(--cu-border);
    border-radius: var(--cu-radius);
    padding: 18px 12px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.pk-app-tile:hover {
    transform: translateY(-3px);
    border-color: var(--cu-accent);
    box-shadow: var(--cu-shadow-hover);
}
.pk-app-tile-icon {
    width: 40px; height: 40px;
    margin: 0 auto 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--cu-accent);
}
.pk-app-tile-icon svg { width: 30px; height: 30px; }
.pk-app-tile-icon img { width: 32px; height: 32px; object-fit: contain; }
.pk-app-tile span {
    font-size: 12px;
    font-weight: 600;
    color: var(--cu-text-secondary);
}

/* ============================================================
   Section heading helper (reused where .ab-section-head isn't a fit)
   ============================================================ */
.pk-section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 64px 24px;
    position: relative;
    z-index: 0;
}
.pk-section::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: var(--cu-bg);
    z-index: -1;
}
.pk-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}
.pk-section-head .pk-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--cu-text-muted);
    margin-bottom: 14px;
}
.pk-section-head h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: var(--cu-text);
    margin: 0 0 12px;
    line-height: 1.3;
}
.pk-section-head p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--cu-text-secondary);
    margin: 0;
}
.pk-section-alt {
    position: relative;
    z-index: 0;
}
.pk-section-alt::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: var(--cu-surface);
    z-index: -1;
}
body { overflow-x: hidden; }

/* ============================================================
   FULL FEATURE BREAKDOWN — accordion (matches FAQ pattern)
   ============================================================ */
.pk-feat-accordion {
    max-width: 820px;
    margin: 0 auto;
}
.pk-feat-item {
    background: var(--cu-surface);
    border: 1px solid var(--cu-border);
    border-radius: var(--cu-radius);
    margin-bottom: 8px;
    overflow: hidden;
}
.pk-feat-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--cu-text);
    cursor: pointer;
}
.pk-feat-q-left { display: flex; align-items: center; gap: 10px; }
.pk-feat-icon { font-size: 17px; }
.pk-feat-q svg { width: 16px; height: 16px; color: var(--cu-text-muted); flex-shrink: 0; transition: transform 0.2s ease; }
.pk-feat-item.open .pk-feat-q svg { transform: rotate(45deg); color: var(--cu-accent); }
.pk-feat-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.pk-feat-a ul {
    list-style: none;
    margin: 0;
    padding: 0 20px 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
}
.pk-feat-a li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--cu-text-secondary);
}
.pk-feat-a li svg { width: 13px; height: 13px; color: var(--cu-success); flex-shrink: 0; margin-top: 3px; }

@media (max-width: 640px) {
    .pk-feat-a ul { grid-template-columns: 1fr; }
    .pk-feat-q { padding: 14px 16px; font-size: 14px; }
}

/* ============================================================
   WORDPRESS HOSTING — standalone plan spotlight card
   ============================================================ */
.pk-wph-wrap {
    max-width: 900px;
    margin: 0 auto;
    background: var(--cu-surface);
    border: 2px solid var(--cu-accent);
    border-radius: var(--cu-radius-lg);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}
.pk-wph-badge {
    position: absolute;
    top: 0; right: 0;
    background: var(--cu-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 0 0 0 10px;
}
.pk-wph-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--cu-border);
}
.pk-wph-head h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--cu-text);
    margin: 0 0 6px;
}
.pk-wph-head p {
    font-size: 13.5px;
    color: var(--cu-text-secondary);
    margin: 0;
    max-width: 420px;
}
.pk-wph-price {
    text-align: right;
}
.pk-wph-price .amt {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--cu-text);
}
.pk-wph-price .per { font-size: 13px; color: var(--cu-text-muted); }
.pk-wph-price .note { font-size: 11.5px; color: var(--cu-text-muted); margin-top: 2px; }
.pk-wph-groups {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 24px;
}
.pk-wph-group strong {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--cu-accent);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 10px;
}
.pk-wph-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pk-wph-group li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--cu-text-secondary);
    line-height: 1.6;
    margin-bottom: 6px;
}
.pk-wph-group li svg { width: 13px; height: 13px; color: var(--cu-success); flex-shrink: 0; margin-top: 3px; }
.pk-wph-limits {
    background: var(--cu-bg);
    border-radius: var(--cu-radius);
    padding: 16px 18px;
    margin-bottom: 22px;
}
.pk-wph-limits strong { display: block; font-size: 12px; font-weight: 700; color: var(--cu-text-muted); text-transform: uppercase; margin-bottom: 8px; }
.pk-wph-limits li { font-size: 12.5px; color: var(--cu-text-secondary); margin-bottom: 4px; list-style: none; }
.pk-wph-cta {
    display: inline-block;
    background: var(--cu-accent);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: var(--cu-radius);
    transition: background 0.2s ease, transform 0.2s ease;
}
.pk-wph-cta:hover { background: var(--cu-accent-hover); transform: translateY(-2px); }

@media (max-width: 700px) {
    .pk-wph-wrap { padding: 26px 20px; }
    .pk-wph-groups { grid-template-columns: 1fr; gap: 18px; }
    .pk-wph-head { flex-direction: column; }
    .pk-wph-price { text-align: left; }
}

.pk-wp-included-strip {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 28px;
    padding: 18px 20px;
    background: var(--cu-accent-soft);
    border-radius: var(--cu-radius);
}
.pk-wp-included-strip-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--cu-accent);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.pk-wp-included-strip-icon svg { width: 15px; height: 15px; }
.pk-wp-included-strip strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--cu-text);
    margin-bottom: 4px;
}
.pk-wp-included-strip p {
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--cu-text-secondary);
    margin: 0;
}
.pk-wp-included-strip a {
    color: var(--cu-accent);
    font-weight: 600;
    text-decoration: none;
}
.pk-wp-included-strip a:hover { text-decoration: underline; }

/* ============================================================
   PER-CARD DURATION DROPDOWN (sits below the price, full width)
   ============================================================ */
.ab-pkg-duration-select {
    display: block;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--cu-text-secondary);
    background: var(--cu-bg);
    border: 1px solid var(--cu-border-strong);
    border-radius: 8px;
    padding: 9px 30px 9px 12px;
    margin-bottom: 8px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2354566B' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 13px;
    transition: border-color 0.2s ease;
}
.ab-pkg-duration-select:hover,
.ab-pkg-duration-select:focus {
    border-color: var(--cu-accent);
    outline: none;
}

/* ============================================================
   PLAN CARDS — dark header / sectioned light body (final layout)
   ============================================================ */
.ab-pkg-card { padding: 0; overflow: visible; position: relative; }

/* ---- Header (dark) ---- */
.ab-pkg-header {
    background: var(--cu-bg);
    border-bottom: 1px solid var(--cu-border);
    padding: 26px 24px 22px;
    position: relative;
    border-radius: calc(var(--cu-radius-lg) - 1px) calc(var(--cu-radius-lg) - 1px) 0 0;
}
.ab-pkg-card.featured .ab-pkg-header { background: var(--cu-accent-soft); border-bottom: 1px solid #DCD9FB; }
.ab-pkg-card.featured .ab-pkg-header h3 { color: var(--cu-accent); }
.ab-pkg-card.featured .ab-pkg-header .ab-pkg-tagline { color: var(--cu-text-secondary); }
.ab-pkg-header-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.ab-pkg-card .ab-pkg-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--cu-text);
    margin: 0 0 6px;
    max-width: 78%;
}
.ab-pkg-header .ab-pkg-tagline {
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--cu-text-secondary);
    margin: 0;
    max-width: 80%;
}
.ab-pkg-illustration {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: #fff;
    border: 1px solid var(--cu-border);
    color: var(--cu-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ab-pkg-illustration svg { width: 18px; height: 18px; }
.ab-pkg-illustration { font-size: 18px; line-height: 1; }

/* (top-right save badge removed — discount now shown inline next to price only) */

/* ---- Body ---- */
.ab-pkg-body { padding: 22px 24px 24px; }

/* Section 1 — price + duration */
.ab-pkg-plan-section {
    margin-bottom: 18px;
}
.ab-pkg-note { margin-bottom: 0; } /* about.css sets 18px by default — too much gap before the next section */
.ab-pkg-price-label { margin-top: 0; }
.ab-pkg-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.ab-pkg-orig-price {
    font-size: 14px;
    color: var(--cu-text-muted);
    text-decoration: line-through;
    font-weight: 500;
}
/* High-specificity overrides — about.css's ".ab-pkg-price span" rule otherwise wins and mutes the price */
.ab-pkg-card .ab-pkg-price .ab-pkg-currency {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--cu-accent);
    margin-right: 1px;
}
.ab-pkg-card .ab-pkg-price .ab-pkg-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--cu-accent);
}
.ab-pkg-card .ab-pkg-price > span:last-child {
    font-size: 13px;
    font-weight: 500;
    color: var(--cu-text-muted);
}
.ab-pkg-save-inline {
    font-size: 10.5px;
    font-weight: 700;
    color: #B45309;
    background: #FEF3C7;
    padding: 3px 9px;
    border-radius: 999px;
    white-space: nowrap;
}

/* Section 2 — stats */
.ab-pkg-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
}
.ab-pkg-stats > div { flex: 1; display: flex; align-items: center; gap: 10px; }
.ab-pkg-stat-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: var(--cu-accent-soft);
    color: var(--cu-accent);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ab-pkg-stat-icon svg { width: 14px; height: 14px; }
.ab-pkg-stats .k { font-size: 10.5px; color: var(--cu-text-muted); text-transform: uppercase; margin-bottom: 2px; }
.ab-pkg-stats .v { font-size: 13px; font-weight: 600; color: var(--cu-text); }

/* Section 3 — CTA */
.ab-pkg-cta-section { margin-bottom: 18px; }
.ab-pkg-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    background: transparent;
    border: 1.5px solid var(--cu-accent);
    color: var(--cu-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 13.5px;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.15s ease;
}
.ab-pkg-cta svg { width: 15px; height: 15px; transition: transform 0.15s ease; }
.ab-pkg-cta:hover { background: var(--cu-accent-soft); }
.ab-pkg-cta:hover svg { transform: translateX(3px); }
.ab-pkg-card.featured .ab-pkg-cta { background: var(--cu-accent); color: #fff; }
.ab-pkg-card.featured .ab-pkg-cta:hover { background: var(--cu-accent-hover); }
.ab-pkg-gst-note {
    text-align: center;
    font-size: 11px;
    color: var(--cu-text-muted);
    margin: 10px 0 0;
}

/* Section 4 — What's Included */
.ab-pkg-features-heading {
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--cu-text-muted);
    margin: 0 0 12px;
}
.ab-pkg-features { margin: 0; padding: 0; list-style: none; }
.ab-pkg-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--cu-text-secondary);
    padding: 8px 0;
    border-bottom: 1px dashed var(--cu-border);
}
.ab-pkg-features li:last-child { border-bottom: none; }
.ab-feat-icon-chip {
    width: 24px; height: 24px;
    border-radius: 6px;
    background: var(--cu-accent-soft);
    color: var(--cu-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ab-feat-icon-chip svg { width: 13px; height: 13px; }
.ab-pkg-card:not(.featured) .ab-feat-icon-chip { background: #EEF0F4; color: #4B5563; }
/* about.css forces feature-list svg icons green (--cu-success) with higher specificity — override back to theme color */
.ab-pkg-card .ab-pkg-features li .ab-feat-icon-chip svg { color: var(--cu-accent); }
.ab-pkg-card:not(.featured) .ab-pkg-features li .ab-feat-icon-chip svg { color: #4B5563; }

/* Pricing grid wrapper */
.ab-pkg-grid {
    position: relative;
    padding: 24px;
    border-radius: var(--cu-radius-lg);
}

@media (max-width: 480px) {
    .pk-section { padding: 44px 16px; }
    .ab-pkg-header { padding: 22px 20px 18px; }
    .ab-pkg-body { padding: 20px 20px 22px; }
    /* .pk-section already adds 16px side padding on mobile — this grid's own
       24px was stacking on top of it, squeezing the card content noticeably. */
    .ab-pkg-grid { padding: 0; }
}

/* ============================================================
   FULL FEATURE BREAKDOWN — 3-column always-open grid (replaces accordion)
   ============================================================ */
.pk-feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1240px;
    margin: 0 auto;
}
.pk-feat-card {
    background: var(--cu-surface);
    border: 1px solid var(--cu-border);
    border-radius: var(--cu-radius);
    padding: 20px 22px 22px;
}
.pk-feat-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--cu-border);
}
.pk-feat-card-head .pk-feat-icon { font-size: 18px; }
.pk-feat-card-head strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--cu-text);
}
.pk-feat-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pk-feat-card li {
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--cu-text-secondary);
    margin-bottom: 8px;
    padding-left: 14px;
    position: relative;
}
.pk-feat-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--cu-border-strong);
}
.pk-feat-card li:last-child { margin-bottom: 0; }

@media (max-width: 980px) {
    .pk-feat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .pk-feat-grid { grid-template-columns: 1fr; }
    .pk-feat-card { padding: 18px 18px 20px; }
}

/* ============================================================
   HERO VIDEO BACKGROUND VARIANT (homepage)
   ============================================================ */
.pk-hero-video {
    position: relative;
    overflow: hidden;
    padding: 72px 24px 80px;
    min-height: 560px;
    display: flex;
    align-items: center;
}
.pk-hero-video::before { display: none; } /* disable the default radial glow — video supplies the visual interest */
.pk-hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.pk-hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8,12,24,0.72) 0%, rgba(8,12,24,0.45) 45%, rgba(8,12,24,0.15) 75%);
    z-index: 1;
}
.pk-hero-video .pk-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}
.pk-hero-video .pk-hero-left h1 { color: #fff; }
.pk-hero-video .pk-hero-left p { color: rgba(255,255,255,0.78); }
.pk-hero-video .pk-guarantee-card {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
.pk-hero-video .pk-hero-visual {
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

@media (max-width: 900px) {
    .pk-hero-video { min-height: 0; padding: 48px 20px 56px; }
    .pk-hero-video-overlay { background: linear-gradient(180deg, rgba(8,12,24,0.75) 0%, rgba(8,12,24,0.6) 60%, rgba(8,12,24,0.75) 100%); }
}
@media (prefers-reduced-motion: reduce) {
    .pk-hero-video-bg { display: none; }
    .pk-hero-video { background: linear-gradient(135deg, #0B1220, #1E2A4A); }
}

/* ============================================================
   HERO — VIDEO ONLY (no text/content overlay), used on packages page
   ============================================================ */
.pk-hero-video-only {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    max-height: 640px;
    padding: 0;
    background: #0B0F1A;
}
.pk-hero-video-only .pk-hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
@media (max-width: 700px) {
    .pk-hero-video-only { aspect-ratio: 16 / 9; max-height: none; }
}
@media (prefers-reduced-motion: reduce) {
    .pk-hero-video-only .pk-hero-video-bg { display: none; }
    .pk-hero-video-only { background: linear-gradient(135deg, #0B1220, #1E2A4A); aspect-ratio: auto; height: 300px; }
}

.pk-hero-eyebrow {
    display: inline-block;
    background: var(--cu-accent-soft);
    color: var(--cu-accent);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
}