/* design.css — หน้าออกแบบ */

/* HERO */
.ds-hero {
  background: var(--ink);
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}
.ds-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 85% 55%, rgba(249,115,22,0.06), transparent 65%),
    radial-gradient(ellipse 25% 40% at 5% 15%, rgba(255,255,255,0.015), transparent 60%);
  pointer-events: none;
}
.ds-hero .wrap { position: relative; z-index: 2; }
.ds-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.ds-kicker {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 20px;
}
.ds-h1 {
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 22px;
}
.ds-h1 em { font-style: normal; color: #EC008C; }
.ds-desc {
  font-size: 15px;
  font-weight: 300;
  color: #777;
  line-height: 1.9;
  margin-bottom: 32px;
}
.ds-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Hero visual — design canvas mockup */
.ds-canvas {
  background: #161616;
  border: 1px solid #252525;
  border-radius: 12px;
  padding: 20px;
}
.ds-canvas-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}
.ds-canvas-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.ds-canvas-dot:nth-child(1){background:#f05252;}
.ds-canvas-dot:nth-child(2){background:#f6a609;}
.ds-canvas-dot:nth-child(3){background:#36c758;}
.ds-canvas-label {
  margin-left: 4px;
  font-family: var(--font);
  font-size: 10px;
  color: #444;
  flex: 1;
  text-align: center;
}
.ds-canvas-body {
  background: #111;
  border-radius: 8px;
  padding: 16px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  min-height: 200px;
}
.ds-canvas-tools {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ds-tool {
  width: 36px; height: 36px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ds-tool svg { width: 16px; height: 16px; stroke: #555; fill: none; stroke-width: 1.5; }
.ds-tool.active { border-color: #EC008C; }
.ds-tool.active svg { stroke: #EC008C; }
.ds-artboard {
  background: #fff;
  border-radius: 6px;
  padding: 14px;
  position: relative;
}
.ds-art-top {
  height: 7px;
  background: #EC008C;
  border-radius: 3px;
  margin-bottom: 8px;
  opacity: 0.8;
  width: 40%;
}
.ds-art-title {
  height: 12px;
  background: #111;
  border-radius: 3px;
  margin-bottom: 6px;
  width: 75%;
}
.ds-art-title.sm { width: 50%; height: 8px; opacity: 0.4; }
.ds-art-body { height: 5px; background: #ddd; border-radius: 2px; margin-bottom: 4px; }
.ds-art-body.s { width: 70%; }
.ds-art-img {
  height: 60px;
  background: #f0f0f0;
  border-radius: 4px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ds-art-img svg { width: 20px; height: 20px; stroke: #bbb; fill: none; }
.ds-art-btn {
  display: inline-block;
  background: #EC008C;
  border-radius: 3px;
  height: 18px;
  width: 64px;
  margin-top: 8px;
  opacity: 0.85;
}

/* SERVICES GRID */
.ds-services { padding: 88px 0; background: var(--white); }
.ds-srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ds-srv-card {
  border: 1px solid var(--light);
  border-radius: var(--r-lg);
  padding: 32px 26px 28px;
  background: var(--off);
  transition: border-color var(--t), transform var(--t);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ds-srv-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.ds-srv-icon {
  width: 48px; height: 48px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ds-srv-icon svg { width: 22px; height: 22px; stroke: var(--ink); fill: none; stroke-width: 1.8; }
.ds-srv-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.ds-srv-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.8;
  flex: 1;
}
.ds-srv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.ds-srv-tag {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  background: var(--light);
  border-radius: 4px;
  color: var(--dark);
}

/* SECTION HEADER */
.ds-sec-header { text-align: center; margin-bottom: 52px; }
.ds-sec-label {
  font-family: var(--font);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #EC008C;
  margin-bottom: 14px;
}
.ds-sec-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
}
.ds-sec-title em { font-style: normal; color: #EC008C; }
.ds-sec-desc {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--dark);
  margin-top: 14px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* PROCESS */
.ds-process { padding: 88px 0; background: var(--off); }
.ds-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.ds-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--light);
  z-index: 0;
}
.ds-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.ds-step-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color var(--t), background var(--t), color var(--t);
}
.ds-step:hover .ds-step-num { border-color: var(--ink); background: var(--ink); color: #fff; }
.ds-step-title { font-size: 13.5px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.ds-step-desc { font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.7; }

/* PORTFOLIO GRID */
.ds-portfolio { padding: 88px 0; background: var(--white); }
.ds-port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ds-port-card {
  border: 1px solid var(--light);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--t), transform var(--t);
}
.ds-port-card:hover { border-color: var(--ink); transform: translateY(-3px); }
.ds-port-thumb {
  aspect-ratio: 4/3;
  background: var(--off);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ds-port-ph { font-family: var(--font); font-size: 11px; color: var(--muted); letter-spacing: 0.06em; }
.ds-port-label {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
}
.ds-port-body { padding: 16px 18px; }
.ds-port-name { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
.ds-port-type { font-size: 12px; font-weight: 300; color: var(--muted); }

/* PRICING */
.ds-pricing { padding: 88px 0; background: #1a1a1a; }
.ds-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.ds-price-card {
  border: 1px solid #e0e0e0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #ffffff;
  transition: border-color var(--t);
  display: flex;
  flex-direction: column;
}
.ds-price-card:hover { border-color: #111; }
.ds-price-card.featured {
  border: 1px solid #333;
  background: #111;
}
.ds-price-head {
  padding: 24px 24px 20px;
  background: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
}
.ds-price-card.featured .ds-price-head {
  background: #111;
  border-bottom: 1px solid #2a2a2a;
}
.ds-price-popular {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #EC008C;
  color: #fff;
  font-family: var(--font);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.ds-price-name { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.ds-price-card.featured .ds-price-name { color: #fff; }
.ds-price-sub { font-size: 13px; font-weight: 300; color: var(--muted); margin-bottom: 14px; }
.ds-price-card.featured .ds-price-sub { color: #bbb; }
.ds-price-amount { font-family: var(--font); font-size: 26px; font-weight: 600; color: var(--ink); }
.ds-price-card.featured .ds-price-amount { color: #EC008C; }
.ds-price-amount sub { font-size: 13px; font-weight: 400; color: var(--muted); vertical-align: baseline; }
.ds-price-body { padding: 20px 24px 24px; background: #fff; flex: 1; display: flex; flex-direction: column; }
.ds-price-card.featured .ds-price-body { background: #1a1a1a; }
.ds-price-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; flex: 1; }
.ds-price-card.featured .ds-price-list li { color: #ffffff; }
.ds-price-card.featured .ds-price-list li .chk { background: rgba(236,0,140,0.3); }
.ds-price-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.5;
}
.ds-price-list li .chk {
  width: 15px; height: 15px;
  border-radius: 50%;
  background: rgba(236,0,140,0.10);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.ds-price-list li .chk svg { width: 8px; height: 8px; stroke: #EC008C; stroke-width: 2.5; fill: none; }
.ds-price-btn {
  display: block;
  width: 100%;
  padding: 11px;
  text-align: center;
  border-radius: var(--r);
  font-size: 13.5px;
  font-weight: 500;
  transition: background var(--t), color var(--t);
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  margin-top: auto;
}
.ds-price-btn:hover { background: var(--ink); color: #fff; }
.ds-price-card.featured .ds-price-btn { background: #EC008C; border-color: #EC008C; color: #fff; }
.ds-price-card.featured .ds-price-btn:hover { background: #C4006A; border-color: #C4006A; }

/* FAQ */
.ds-faq { padding: 88px 0; background: var(--white); }
.ds-faq-wrap { max-width: 720px; margin: 0 auto; }

/* CTA */
.ds-cta {
  background: var(--ink);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ds-cta::before {
  display: none;
}
.ds-cta .wrap { position: relative; z-index: 1; }
.ds-cta-title { font-size: clamp(24px, 3.5vw, 38px); font-weight: 700; letter-spacing: -0.025em; color: #fff; margin-bottom: 12px; }
.ds-cta-title em { font-style: normal; color: #EC008C; }
.ds-cta-desc { font-size: 14.5px; font-weight: 300; color: #666; margin-bottom: 30px; line-height: 1.8; }
.ds-cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .ds-srv-grid { grid-template-columns: repeat(2, 1fr); }
  .ds-price-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .ds-price-card.featured { transform: none; }
  .ds-port-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ds-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .ds-srv-grid { grid-template-columns: 1fr; }
  .ds-steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .ds-steps::before { display: none; }
  .ds-port-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .ds-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   MARKETING PAGE — mkt-* classes
   ============================================================ */

/* SERVICES ROWS */
.mkt-services { padding: 80px 0 60px; background: var(--white); }

.mkt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 6px;
  border: 1px solid var(--light);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
}
.mkt-row:hover {
  border-color: #EC008C;
  box-shadow: 0 4px 32px rgba(236,0,140,0.06);
}
.mkt-row.flip { direction: rtl; }
.mkt-row.flip > * { direction: ltr; }

/* Image side */
.mkt-row-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--off);
  position: relative;
}
.mkt-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.mkt-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.mkt-row:hover .mkt-img-wrap img { transform: scale(1.04); }
.mkt-img-wrap.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
}
.mkt-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Body side */
.mkt-row-body {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  background: var(--white);
}
.mkt-row-num {
  font-family: var(--font);
  font-size: 64px;
  font-weight: 700;
  color: #EC008C;
  opacity: 0.08;
  line-height: 1;
  margin-bottom: -12px;
  letter-spacing: -0.04em;
}
.mkt-row-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.mkt-row-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.85;
  margin-bottom: 18px;
}
.mkt-row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.mkt-tag {
  font-family: var(--font);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border: 1px solid #FCE4EC;
  background: #FCE4EC;
  color: #EC008C;
  border-radius: 4px;
}
.mkt-row-price {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--off);
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 3px solid #EC008C;
}
.mkt-price-label {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.mkt-price-val {
  font-size: 15px;
  font-weight: 600;
  color: #EC008C;
}
.mkt-row-btn {
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 10px 20px;
  border-radius: var(--r);
  transition: background var(--t), color var(--t);
  align-self: flex-start;
}
.mkt-row-btn:hover { background: var(--ink); color: #fff; }

/* PRICING TABLE */
.mkt-pricing {
  padding: 88px 0;
  background: var(--off);
}
.mkt-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--light);
  background: var(--white);
  margin-bottom: 20px;
}
.mkt-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font);
  font-size: 13.5px;
  min-width: 680px;
}
.mkt-table thead tr {
  background: var(--ink);
}
.mkt-table thead th {
  padding: 14px 18px;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
  text-align: left;
  white-space: nowrap;
}
.mkt-table thead th:first-child { color: #aaa; }
.mkt-table tbody tr {
  border-bottom: 1px solid var(--light);
  transition: background var(--t);
}
.mkt-table tbody tr:last-child { border-bottom: none; }
.mkt-table tbody tr:hover { background: #fef0f7; }
.mkt-table tbody tr.pop { background: #FFF0F8; }
.mkt-table tbody tr.pop:hover { background: #ffe4f3; }
.mkt-table td {
  padding: 13px 18px;
  color: var(--dark);
  vertical-align: middle;
}
.mkt-table .col-name {
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}
.mkt-table .col-price strong {
  font-weight: 600;
  color: #EC008C;
  font-size: 15px;
}
.mkt-table .col-price small {
  font-size: 12px;
  color: var(--muted);
}
.mkt-table .col-time,
.mkt-table .col-draft { color: var(--muted); font-size: 12.5px; }
.mkt-table .col-spec { font-size: 12.5px; color: var(--muted); }
.pop-badge {
  display: inline-block;
  background: #EC008C;
  color: #fff;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
  margin-right: 7px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.tbl-btn {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 500;
  padding: 6px 14px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  color: var(--ink);
  white-space: nowrap;
  transition: background var(--t), color var(--t);
}
.tbl-btn:hover { background: var(--ink); color: #fff; }
.mkt-table-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}
.mkt-table-note svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  stroke: var(--muted);
}
.mkt-table-note a { color: #EC008C; text-decoration: underline; text-underline-offset: 3px; }

/* PROCESS — dark section, 4-column arrow flow */
.mkt-process {
  padding: 88px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.mkt-process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(236,0,140,0.08), transparent 60%);
  pointer-events: none;
}
.mkt-process .wrap { position: relative; z-index: 1; }
.mkt-process .ds-sec-title { color: #fff; }
.mkt-process .ds-sec-label { color: #EC008C; }
.mkt-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step-counter;
}
.mkt-step {
  position: relative;
  padding: 36px 28px 32px;
  border-right: 1px solid rgba(255,255,255,0.06);
  counter-increment: step-counter;
}
.mkt-step:last-child { border-right: none; }
/* arrow connector */
.mkt-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -11px;
  top: 44px;
  font-size: 16px;
  color: #EC008C;
  z-index: 2;
  background: var(--ink);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
}
.mkt-step-num {
  font-size: 52px;
  font-weight: 800;
  color: #EC008C;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}
.mkt-step-bar {
  width: 32px;
  height: 3px;
  background: #EC008C;
  border-radius: 2px;
  margin-bottom: 18px;
}
.mkt-step-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.mkt-step-desc {
  font-size: 12.5px;
  font-weight: 300;
  color: #666;
  line-height: 1.85;
}

/* PROCESS RESPONSIVE */
@media (max-width: 960px) {
  .mkt-steps { grid-template-columns: repeat(2, 1fr); }
  .mkt-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .mkt-step:not(:last-child)::after { display: none; }
}
@media (max-width: 600px) {
  .mkt-steps { grid-template-columns: 1fr; }
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .mkt-row { grid-template-columns: 1fr; }
  .mkt-row.flip { direction: ltr; }
  .mkt-row-img { aspect-ratio: 16/9; }
  .mkt-row-body { padding: 32px 28px; }
  .mkt-row-num { font-size: 48px; }
}
@media (max-width: 600px) {
  .mkt-row-body { padding: 24px 20px; }
  .mkt-row-name { font-size: 18px; }
}

/* ============================================================
   PACKAGING PAGE — pkg-* classes
   ============================================================ */

/* SERVICES GRID — symmetric 3×2 */
.pkg-unbox { padding: 80px 0 60px; background: var(--white); }

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.pkg-cell {
  border: 1px solid var(--light);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
  position: relative;
}
.pkg-cell:hover {
  border-color: #EC008C;
  box-shadow: 0 6px 36px rgba(236,0,140,0.07);
  transform: translateY(-2px);
}

/* image area — uniform height across all cells */
.pkg-cell-img {
  overflow: hidden;
  background: var(--off);
  flex-shrink: 0;
  position: relative;
  height: 200px;
}

.pkg-cell-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.pkg-cell:hover .pkg-cell-img img { transform: scale(1.05); }



/* body */
.pkg-cell-body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.pkg-cell-en {
  font-family: var(--font);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #EC008C;
  margin-bottom: 6px;
}
.pkg-cell-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.pkg-cell-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 14px;
  flex: 1;
}
.pkg-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 16px;
}
.pkg-chip {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  background: #FCE4EC;
  color: #EC008C;
  border-radius: 4px;
}
.pkg-price-tag {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--muted);
  padding-top: 14px;
  border-top: 1px solid var(--light);
}
.pkg-price-tag strong {
  font-size: 16px;
  font-weight: 600;
  color: #EC008C;
}

/* WHAT'S IN THE BOX */
.pkg-inbox {
  padding: 80px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.pkg-inbox::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 90% 50%, rgba(236,0,140,0.06), transparent 60%),
    radial-gradient(ellipse 30% 50% at 10% 80%, rgba(236,0,140,0.04), transparent 55%);
  pointer-events: none;
}
.pkg-inbox .wrap { position: relative; z-index: 1; }
.pkg-inbox .ds-sec-title { color: #fff; }
.pkg-inbox .ds-sec-label { color: #EC008C; }
.pkg-inbox .ds-sec-desc { color: #666; }

.pkg-inbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
}
.pkg-inbox-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 26px;
  border: 1px solid #222;
  background: #141414;
  transition: background var(--t);
}
.pkg-inbox-card:hover { background: #1a1a1a; }
.pkg-inbox-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EC008C;
  flex-shrink: 0;
  margin-top: 6px;
}
.pkg-inbox-title {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
}
.pkg-inbox-desc {
  font-size: 12.5px;
  font-weight: 300;
  color: #666;
  line-height: 1.8;
}

/* inc chip in table */
.inc-chip {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  padding: 3px 8px;
  background: var(--off);
  border: 1px solid var(--light);
  border-radius: 4px;
  color: var(--dark);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.pop .inc-chip { background: #FCE4EC; border-color: #FCE4EC; color: #EC008C; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-inbox-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-inbox-grid { grid-template-columns: 1fr; }
  .pkg-cell-body { padding: 20px; }
}
