/* ============================================
   Shared service detail page styles
   ============================================ */

.sp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  margin-top: 28px;
}
@media (max-width: 860px) { .sp-hero { grid-template-columns: 1fr; } }

.sp-hero-left h1 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.95;
  font-size: clamp(40px, 6vw, 92px);
  margin: 0;
  max-width: 12ch;
}
.sp-hero-left h1 em { color: var(--signal); font-style: normal; }

.sp-hero-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bone-2);
}
.sp-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.sp-hero-badge {
  position: absolute;
  top: 22px; left: 22px;
  background: rgba(14,14,13,0.78);
  backdrop-filter: blur(6px);
  color: var(--bone);
  padding: 10px 14px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sp-hero-badge .pulse {
  width: 7px; height: 7px;
  background: var(--signal);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,90,31,0.6);
  animation: pulse 1.8s ease-out infinite;
}

/* Deliverables */
.deliv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 800px) { .deliv-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .deliv-grid { grid-template-columns: 1fr; } }

.deliv {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bone);
  transition: background .2s ease;
}
.deliv:hover { background: var(--bone-2); }
.deliv-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--signal);
  text-transform: uppercase;
}
.deliv h3 { margin: 0 0 4px; }
.deliv p {
  font-size: 14.5px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
  opacity: 0.9;
}

/* Stats strip */
.sp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 700px) { .sp-stats { grid-template-columns: 1fr 1fr; } .sp-stats > div { border-bottom: 1px solid var(--line); } .sp-stats > div:nth-last-child(-n+2) { border-bottom: 0; } }
.sp-stats > div {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}
.sp-stats > div:last-child { border-right: none; }
.sp-stats .v {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
.sp-stats .l {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
}

/* FAQ */
.sp-faq {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 80px);
}
@media (max-width: 860px) { .sp-faq { grid-template-columns: 1fr; } }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  cursor: pointer;
}
.faq-list summary {
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: -0.012em;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--signal);
  transition: transform .2s ease;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p {
  margin: 14px 0 0;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 60ch;
  font-size: 15.5px;
}

/* CTA block */
.cta-block {
  background: var(--ink);
  color: var(--bone);
  border-radius: 22px;
  padding: clamp(48px, 7vw, 88px) clamp(28px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: end;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: var(--signal);
  opacity: 0.16;
  filter: blur(60px);
}
@media (max-width: 800px) { .cta-block { grid-template-columns: 1fr; } }
.cta-block h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.98;
  font-size: clamp(34px, 4.4vw, 64px);
  margin: 0;
  max-width: 16ch;
}
.cta-block p {
  color: rgba(239,234,224,0.78);
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 36ch;
}
.cta-block .btn-primary { background: var(--bone); color: var(--ink); }
.cta-block .btn-primary:hover { background: var(--signal); color: var(--bone); }

/* ============================================
   Offer block — 2 or 3 column with optional image
   ============================================ */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
}
@media (max-width: 900px) { .offer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .offer-grid { grid-template-columns: 1fr; } }

.offer {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .25s ease, border-color .25s ease;
}
.offer:hover { border-color: var(--ink); }
.offer .n {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal);
}
.offer h3 { margin: 4px 0 0; }
.offer p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}
.offer p + p { margin-top: -2px; }

/* Two-up offer with image as one of the cards */
.offer-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 800px) { .offer-feature { grid-template-columns: 1fr; } }
.offer-feature .offer-media {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bone-2);
}
.offer-feature .offer-media img { width: 100%; height: 100%; object-fit: cover; }
.offer-feature .offer-body p { font-size: 16.5px; line-height: 1.6; color: var(--ink-2); margin: 0 0 16px; max-width: 52ch; }

/* ============================================
   Mid-CTA section (For Foreign Investors / Showcase / Efficient)
   ============================================ */
.mid-cta {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: clamp(56px, 7vw, 96px) 0;
}
@media (max-width: 860px) { .mid-cta { grid-template-columns: 1fr; } }
.mid-cta-media {
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bone-2);
}
.mid-cta-media img { width: 100%; height: 100%; object-fit: cover; }
.mid-cta h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  font-size: clamp(32px, 4.4vw, 60px);
  margin: 0 0 24px;
  max-width: 16ch;
}
.mid-cta h2 em { font-style: normal; color: var(--signal); }
.mid-cta p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 18px;
  max-width: 52ch;
}
.mid-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

/* ============================================
   Why-choose six-card grid
   ============================================ */
.why-six {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 900px) { .why-six { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-six { grid-template-columns: 1fr; } }
.why-six > article {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bone);
  transition: background .2s ease;
}
.why-six > article:hover { background: var(--bone-2); }
.why-six .n {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.why-six .n .ico { color: var(--ink); font-size: 14px; }
.why-six h3 { margin: 4px 0 6px; }
.why-six p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
}

/* ============================================
   Process: numbered, alternating
   ============================================ */
.process-list {
  border-top: 1px solid var(--line);
}
.process-list .step {
  display: grid;
  grid-template-columns: 100px 1fr 2fr;
  gap: clamp(20px, 3vw, 56px);
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: padding-left .25s ease;
}
.process-list .step:hover { padding-left: 12px; }
@media (max-width: 700px) {
  .process-list .step { grid-template-columns: 60px 1fr; }
  .process-list .step p { grid-column: 2 / -1; }
}
.process-list .step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal);
}
.process-list .step-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.7vw, 26px);
  letter-spacing: -0.012em;
  font-weight: 500;
  margin: 0;
}
.process-list .step p {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 60ch;
}

/* ============================================
   Testimonials (3 cards, reused style)
   ============================================ */
.sp-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .sp-testi-grid { grid-template-columns: 1fr; } }
.sp-testi {
  padding: 36px 30px 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--bone);
  transition: background .2s ease, border-color .2s ease;
}
.sp-testi:hover { background: var(--bone-2); border-color: var(--ink); }
.sp-testi .qm {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.5;
  color: var(--signal);
  margin: -6px 0 -8px;
}
.sp-testi p {
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0;
  color: var(--ink);
  flex: 1;
}
.sp-testi .who {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.sp-testi .who .name { font-weight: 500; letter-spacing: -0.005em; }
.sp-testi .stars {
  color: var(--signal);
  letter-spacing: 2px;
  font-size: 11px;
}

/* ============================================
   Past Projects gallery + lightbox
   ============================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery { grid-template-columns: 1fr 1fr; } }

.gallery-item {
  aspect-ratio: 4/3;
  background: var(--bone-2);
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  border: 0;
  padding: 0;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .25s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: "⤢";
  position: absolute;
  top: 10px; right: 10px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(14,14,13,0.78);
  color: var(--bone);
  font-size: 13px;
  display: grid; place-items: center;
  opacity: 0;
  transition: opacity .2s ease;
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(14,14,13,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-stage {
  position: relative;
  max-width: min(1200px, 92vw);
  max-height: 86vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox img {
  max-width: 100%;
  max-height: 86vh;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bone);
  color: var(--ink);
  border: 0;
  display: grid; place-items: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
}
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(239,234,224,0.9);
  color: var(--ink);
  border: 0;
  display: grid; place-items: center;
  cursor: pointer;
  font-size: 22px;
  z-index: 2;
}
.lightbox-nav:hover { background: var(--signal); color: var(--bone); }
.lightbox-prev { left: -64px; }
.lightbox-next { right: -64px; }
@media (max-width: 900px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}
.lightbox-counter {
  position: absolute;
  bottom: -28px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(239,234,224,0.7);
}

/* ============================================
   Related services
   ============================================ */
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 720px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bone-2);
  display: block;
}
.related-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.related-card:hover img { transform: scale(1.04); }
.related-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.65));
}
.related-card .label {
  position: absolute;
  left: 28px; right: 28px; bottom: 28px;
  color: var(--bone);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}
.related-card .label .n {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 8px;
}
.related-card .label h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: -0.018em;
  line-height: 1.05;
  margin: 0;
  color: var(--bone);
}
.related-card .arrow-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bone);
  color: var(--ink);
  display: grid; place-items: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: background .2s ease, color .2s ease, transform .3s ease;
}
.related-card:hover .arrow-circle { background: var(--signal); color: var(--bone); transform: rotate(-45deg); }

/* ============================================
   Pricing
   ============================================ */

.launch-banner {
  background: var(--signal);
  color: var(--bone);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 36px) clamp(24px, 4vw, 48px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  margin-bottom: clamp(32px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
@media (max-width: 760px) { .launch-banner { grid-template-columns: 1fr; text-align: left; } }

.launch-banner .pill {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--bone);
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.launch-banner .pill .pulse {
  width: 7px; height: 7px;
  background: var(--signal);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,90,31,0.6);
  animation: pulse 1.8s ease-out infinite;
}
.launch-banner h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.05;
  font-size: clamp(22px, 2.4vw, 32px);
  margin: 0 0 6px;
  color: var(--bone);
}
.launch-banner p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  opacity: 0.92;
  max-width: 56ch;
}
.launch-banner .cta {
  background: var(--ink);
  color: var(--bone);
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}
.launch-banner .cta:hover { background: var(--bone); color: var(--ink); }

/* Tier grid */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.price-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .price-grid.cols-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .price-grid, .price-grid.cols-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .price-grid, .price-grid.cols-4 { grid-template-columns: 1fr; }
}

.tier {
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: border-color .25s ease, transform .3s ease;
}
.tier:hover { border-color: var(--ink); }

.tier.featured {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.tier.featured .tier-name,
.tier.featured .price-now,
.tier.featured .tier-suit,
.tier.featured li {
  color: var(--bone);
}

.tier-tag {
  position: absolute;
  top: -12px;
  left: 28px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--signal);
  color: var(--bone);
  padding: 6px 10px;
  border-radius: 999px;
}

.tier-head { display: flex; flex-direction: column; gap: 6px; }
.tier-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal);
}
.tier.featured .tier-name { color: var(--signal); }

.tier h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.1;
  font-size: clamp(20px, 1.8vw, 26px);
  margin: 2px 0 0;
}

.tier-prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  padding: 8px 0 4px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}
.tier.featured .tier-prices { border-bottom-color: rgba(239,234,224,0.18); }

.price-old {
  font-family: var(--font-display);
  font-size: 20px;
  text-decoration: line-through;
  color: var(--muted);
  letter-spacing: -0.012em;
  font-weight: 400;
}
.tier.featured .price-old { color: rgba(239,234,224,0.45); }

.price-now {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  font-size: clamp(34px, 3.4vw, 48px);
  color: var(--ink);
}
.price-now sub {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-left: 4px;
  bottom: 0;
}
.tier.featured .price-now sub { color: rgba(239,234,224,0.6); }

.tier ul {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.tier li {
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink-2);
  position: relative;
  padding-left: 22px;
}
.tier.featured li { color: rgba(239,234,224,0.85); }
.tier li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 1px;
  background: var(--signal);
}

.tier-suit {
  margin: 14px 0 4px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.tier.featured .tier-suit { color: rgba(239,234,224,0.55); border-top-color: rgba(239,234,224,0.18); }
.tier-suit b { color: var(--ink); font-weight: 500; font-family: var(--font-display); text-transform: none; letter-spacing: -0.005em; font-size: 14px; display: block; margin-top: 4px; }
.tier.featured .tier-suit b { color: var(--bone); }

.tier .tier-cta {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  background: var(--ink);
  color: var(--bone);
  border: 1px solid var(--ink);
  transition: background .2s ease, color .2s ease;
}
.tier .tier-cta:hover { background: var(--signal); border-color: var(--signal); }
.tier.featured .tier-cta {
  background: var(--signal);
  color: var(--bone);
  border-color: var(--signal);
}
.tier.featured .tier-cta:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

/* Add-ons */
.addons {
  margin-top: clamp(32px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.addons-head {
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.addons-head .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal);
}
.addons-head h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.012em;
  font-size: 18px;
  margin: 0;
}
.addons-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 780px) { .addons-list { grid-template-columns: 1fr; } }

.addon {
  padding: 22px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.addon:last-child { border-right: none; }
@media (max-width: 780px) {
  .addon { border-right: none; border-bottom: 1px solid var(--line); }
  .addon:last-child { border-bottom: none; }
}
.addon .name {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: -0.005em;
}
.addon .amount {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--signal);
  white-space: nowrap;
}

/* Trust strip */
.trust-strip {
  margin-top: clamp(32px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 780px) { .trust-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .trust-strip { grid-template-columns: 1fr; } }
.trust-strip > div {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-strip > div:last-child { border-right: none; }
@media (max-width: 780px) {
  .trust-strip > div:nth-child(2) { border-right: none; }
  .trust-strip > div:nth-child(1), .trust-strip > div:nth-child(2) { border-bottom: 1px solid var(--line); }
}
.trust-strip .tick {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bone);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 13px;
}
.trust-strip .label {
  font-family: var(--font-display);
  font-size: 14.5px;
  letter-spacing: -0.005em;
  line-height: 1.35;
}
