/* ─── HERO ─── */
      #pkg-hero {
        padding: 72px 5% 80px;
        background: linear-gradient(160deg, #ffffff 0%, #eef6ff 50%, #f0f9ff 100%);
        position: relative; overflow: hidden;
      }
      .hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
      .hero-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15; }
      .blob1 { width: 550px; height: 550px; background: var(--primary); top: -180px; right: -120px; animation: floatBlob 9s ease-in-out infinite; }
      .blob2 { width: 350px; height: 350px; background: var(--secondary); bottom: -80px; left: -80px; animation: floatBlob 11s ease-in-out infinite reverse; }
      .hero-grid {
        position: absolute; inset: 0;
        background-image: linear-gradient(rgba(37,99,235,0.04) 1px,transparent 1px), linear-gradient(90deg,rgba(37,99,235,0.04) 1px,transparent 1px);
        background-size: 48px 48px;
      }
      @keyframes floatBlob { 0%,100%{transform:translateY(0) scale(1);}50%{transform:translateY(-26px) scale(1.05);} }
      @keyframes fadeInUp { from{opacity:0;transform:translateY(22px);}to{opacity:1;transform:translateY(0);} }
      @keyframes pulse { 0%,100%{opacity:1;}50%{opacity:0.4;} }

      .pkg-hero-inner {
        max-width: 1280px; margin: 0 auto;
        display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: start;
        position: relative; z-index: 2;
      }

      /* left */
      .hero-badge {
        display: inline-flex; align-items: center; gap: 8px;
        background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.15);
        padding: 6px 16px; border-radius: 50px; font-size: 12.5px; font-weight: 600;
        color: var(--primary); margin-bottom: 22px; animation: fadeInUp 0.6s ease both;
      }
      .badge-dot { width: 7px; height: 7px; background: var(--secondary); border-radius: 50%; animation: pulse 2s infinite; }
      .pkg-hero-title {
        font-family: "Manrope", sans-serif;
        font-size: clamp(32px, 4vw, 52px);
        font-weight: 800; line-height: 1.1; letter-spacing: -1.2px;
        color: var(--text); margin-bottom: 20px; animation: fadeInUp 0.7s ease 0.1s both;
      }
      .pkg-hero-title .grad {
        background: linear-gradient(135deg, var(--primary), var(--accent));
        -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      }
      .pkg-hero-desc {
        font-size: 16px; color: var(--muted); line-height: 1.8;
        margin-bottom: 32px; animation: fadeInUp 0.7s ease 0.2s both; max-width: 560px;
      }

      /* meta strips */
      .pkg-meta-strip {
        display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px;
        animation: fadeInUp 0.7s ease 0.25s both;
      }
      .pkg-meta-item {
        display: flex; align-items: center; gap: 8px;
        background: rgba(255,255,255,0.85); border: 1.5px solid var(--border);
        border-radius: 10px; padding: 9px 14px;
        font-size: 13px; font-weight: 600; color: var(--text);
        backdrop-filter: blur(8px); box-shadow: var(--shadow);
      }
      .pkg-meta-item span { color: var(--muted); font-weight: 400; margin-left: 2px; }

      .hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeInUp 0.7s ease 0.3s both; }
      .btn-hero-solid {
        display: inline-flex; align-items: center; gap: 9px;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        color: #fff; font-weight: 700; font-size: 15px; padding: 14px 28px;
        border-radius: 12px; border: none; cursor: pointer; text-decoration: none;
        box-shadow: 0 6px 24px rgba(37,99,235,0.38); transition: all 0.25s;
        font-family: "Plus Jakarta Sans", sans-serif;
      }
      .btn-hero-solid:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,99,235,0.5); }
      .btn-hero-outline {
        display: inline-flex; align-items: center; gap: 9px;
        background: rgba(255,255,255,0.85); color: var(--text); font-weight: 600; font-size: 15px;
        padding: 13px 26px; border-radius: 12px; border: 1.5px solid var(--border);
        cursor: pointer; text-decoration: none; backdrop-filter: blur(10px);
        transition: all 0.25s; font-family: "Plus Jakarta Sans", sans-serif;
      }
      .btn-hero-outline:hover { border-color: var(--primary); color: var(--primary); background: var(--bg3); }

      /* ─── PRICING CARD (sticky right) ─── */
      .pricing-card {
        background: #fff; border: 2px solid var(--primary);
        border-radius: 24px; overflow: hidden;
        box-shadow: 0 12px 48px rgba(37,99,235,0.18);
        animation: fadeInUp 0.7s ease 0.2s both;
        position: sticky; top: 92px;
      }
      .pricing-card-header {
        padding: 28px 28px 22px;
        background: linear-gradient(135deg, var(--primary), #1d4ed8);
        position: relative; overflow: hidden;
      }
      .pricing-card-header::before {
        content: ""; position: absolute; inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E") repeat;
      }
      .pc-header-content { position: relative; z-index: 1; }
      .pc-pkg-label { font-size: 11px; font-weight: 800; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
      .pc-pkg-name { font-family: "Manrope",sans-serif; font-weight: 800; font-size: 18px; color: #fff; line-height: 1.25; margin-bottom: 16px; }
      .pc-price-row { display: flex; align-items: baseline; gap: 6px; }
      .pc-currency { font-size: 22px; font-weight: 800; color: #fff; }
      .pc-price { font-family: "Manrope",sans-serif; font-size: 42px; font-weight: 800; color: #fff; line-height: 1; }
      .pc-price-sub { font-size: 14px; color: rgba(255,255,255,0.7); margin-left: 4px; }

      .pricing-card-body { padding: 24px 28px; }
      .pc-timeline-row {
        display: flex; align-items: center; justify-content: space-between;
        padding: 12px 14px; border-radius: 10px;
        background: var(--bg3); border: 1px solid rgba(37,99,235,0.15);
        margin-bottom: 20px;
      }
      .pc-tl-label { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
      .pc-tl-val { font-size: 14px; font-weight: 800; color: var(--primary); }

      .pc-guarantees { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
      .pc-guarantee {
        display: flex; align-items: center; gap: 9px;
        font-size: 13px; font-weight: 600; color: var(--text);
      }
      .pc-guarantee::before { content: "✔"; font-size: 10px; font-weight: 800; color: #16a34a; flex-shrink: 0; }

      .pc-cta-stack { display: flex; flex-direction: column; gap: 10px; }
      .pc-cta-primary {
        display: block; width: 100%; padding: 14px;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        color: #fff; font-weight: 700; font-size: 15px; border-radius: 12px;
        border: none; cursor: pointer; text-align: center; text-decoration: none;
        box-shadow: 0 6px 20px rgba(37,99,235,0.35); transition: all 0.25s;
        font-family: "Plus Jakarta Sans", sans-serif;
      }
      .pc-cta-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(37,99,235,0.48); }
      .pc-cta-secondary {
        display: block; width: 100%; padding: 13px;
        background: transparent; color: var(--primary); font-weight: 700; font-size: 14px;
        border-radius: 12px; border: 1.5px solid var(--primary);
        cursor: pointer; text-align: center; text-decoration: none; transition: all 0.25s;
        font-family: "Plus Jakarta Sans", sans-serif;
      }
      .pc-cta-secondary:hover { background: var(--bg3); }
      .pc-privacy { font-size: 11.5px; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.55; }

      /* ─── MAIN CONTENT AREA ─── */
      #pkg-body { padding: 80px 5%; background: var(--bg2); }
      .pkg-body-inner {
        max-width: 1280px; margin: 0 auto;
        display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: start;
      }
      .pkg-main { min-width: 0; }

      /* What's included */
      .pkg-section { margin-bottom: 56px; }
      .pkg-section-title {
        font-family: "Manrope",sans-serif; font-weight: 800;
        font-size: clamp(20px,2.2vw,26px); color: var(--text);
        letter-spacing: -0.3px; margin-bottom: 22px;
        display: flex; align-items: center; gap: 12px;
      }
      .pkg-section-title::after { content: ""; flex: 1; height: 2px; background: var(--border); border-radius: 2px; }

      /* Deliverables grid */
      .deliverables-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
      .deliverable-item {
        display: flex; align-items: center; gap: 12px;
        background: #fff; border: 1px solid var(--border);
        border-radius: 14px; padding: 16px 18px;
        box-shadow: var(--shadow); transition: all 0.25s;
      }
      .deliverable-item:hover { border-color: rgba(37,99,235,0.22); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
      .di-icon {
        width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        display: flex; align-items: center; justify-content: center; font-size: 16px;
        box-shadow: 0 4px 10px rgba(37,99,235,0.22);
      }
      .di-text { font-size: 13.5px; font-weight: 700; color: var(--text); }
      .di-included {
        margin-left: auto; font-size: 10.5px; font-weight: 800;
        background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0;
        padding: 2px 9px; border-radius: 20px; white-space: nowrap;
      }

      /* Challenges */
      .challenges-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .challenge-item {
        display: flex; align-items: center; gap: 10px;
        background: #fff; border: 1px solid var(--border);
        border-radius: 12px; padding: 14px 16px;
        font-size: 13.5px; font-weight: 600; color: var(--text);
        box-shadow: var(--shadow); transition: all 0.2s;
      }
      .challenge-item:hover { border-color: rgba(37,99,235,0.2); background: var(--bg3); color: var(--primary); }
      .challenge-check {
        width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0;
        background: linear-gradient(135deg, #f59e0b, #d97706);
        display: flex; align-items: center; justify-content: center;
        font-size: 10px; color: #fff; font-weight: 800;
      }

      /* Deliverable outcomes table */
      .outcomes-table-wrap { border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
      .outcomes-table { width: 100%; border-collapse: collapse; }
      .outcomes-table thead tr { background: linear-gradient(135deg, var(--primary), var(--accent)); }
      .outcomes-table thead th { padding: 16px 22px; text-align: left; font-size: 12.5px; font-weight: 700; color: #fff; letter-spacing: 0.4px; text-transform: uppercase; }
      .outcomes-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.2s; }
      .outcomes-table tbody tr:last-child { border-bottom: none; }
      .outcomes-table tbody tr:hover { background: var(--bg3); }
      .outcomes-table td { padding: 14px 22px; font-size: 13.5px; vertical-align: middle; }
      .outcomes-table td:first-child { font-weight: 700; color: var(--text); }
      .outcomes-table td:last-child { color: var(--muted); }

      /* Next steps */
      .next-steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
      .next-step-card {
        background: #fff; border: 1.5px solid var(--border);
        border-radius: 18px; padding: 26px 24px;
        box-shadow: var(--shadow); transition: all 0.3s;
        display: flex; flex-direction: column; text-decoration: none;
      }
      .next-step-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
      .ns-icon {
        width: 46px; height: 46px; border-radius: 13px; margin-bottom: 16px;
        display: flex; align-items: center; justify-content: center; font-size: 20px;
      }
      .ns-icon.blue { background: linear-gradient(135deg, var(--primary), var(--accent)); }
      .ns-icon.green { background: linear-gradient(135deg, #064e3b, #059669); }
      .ns-step-label { font-size: 10.5px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 6px; }
      .ns-title { font-family: "Manrope",sans-serif; font-weight: 800; font-size: 17px; color: var(--text); margin-bottom: 8px; line-height: 1.25; }
      .ns-desc { font-size: 13px; color: var(--muted); line-height: 1.6; flex: 1; }
      .ns-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 13px; font-weight: 700; color: var(--primary); transition: gap 0.2s; }
      .next-step-card:hover .ns-cta { gap: 10px; }

      /* ─── RIGHT SIDEBAR ─── */
      .pkg-sidebar { position: sticky; top: 92px; }

      /* Overview card */
      .overview-card {
        background: #fff; border: 1px solid var(--border);
        border-radius: 20px; padding: 28px 26px; box-shadow: var(--shadow);
        margin-bottom: 20px;
      }
      .ov-title {
        font-family: "Manrope",sans-serif; font-weight: 700; font-size: 16px;
        color: var(--text); margin-bottom: 18px;
        display: flex; align-items: center; gap: 8px;
      }
      .ov-rows { display: flex; flex-direction: column; gap: 0; }
      .ov-row {
        display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
        padding: 13px 0; border-bottom: 1px solid var(--border);
      }
      .ov-row:last-child { border-bottom: none; }
      .ov-label { font-size: 12.5px; font-weight: 600; color: var(--muted); }
      .ov-value { font-size: 13px; font-weight: 700; color: var(--text); text-align: right; }
      .ov-value.primary { color: var(--primary); }

      /* Trust badge */
      .trust-card {
        background: linear-gradient(145deg, var(--bg3), rgba(56,189,248,0.08));
        border: 1.5px solid rgba(37,99,235,0.15);
        border-radius: 20px; padding: 24px 22px;
      }
      .trust-title { font-family: "Manrope",sans-serif; font-weight: 700; font-size: 15px; color: var(--text); margin-bottom: 16px; }
      .trust-items { display: flex; flex-direction: column; gap: 11px; }
      .trust-item {
        display: flex; align-items: center; gap: 10px;
        font-size: 13px; font-weight: 600; color: var(--text);
      }
      .trust-item::before { content: "✔"; font-size: 10px; font-weight: 800; color: #16a34a; flex-shrink: 0; }

     

      

      /* ─── RESPONSIVE ─── */
      @media (max-width: 1100px) {
        .pkg-hero-inner, .pkg-body-inner { grid-template-columns: 1fr; }
        .pricing-card, .pkg-sidebar { position: static; }
        .pkg-hero-inner .pricing-card { max-width: 480px; }
        
      }
      @media (max-width: 800px) {
        .deliverables-grid, .challenges-grid, .next-steps-grid { grid-template-columns: 1fr; }
        
      }
      @media (max-width: 700px) {
        
        #pkg-hero { padding: 48px 5% 60px; }
        #pkg-body { padding: 60px 5%; }
        
      }