* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      html,
      body {
        overflow-x: hidden;
        scroll-behavior: smooth;
      }

      @keyframes masterWipeLoop {
        0% {
          transform: translateX(-100%);
        }
        20%,
        45% {
          transform: translateX(0%);
        }
        65%,
        100% {
          transform: translateX(100%);
        }
      }
      .dr-stripe-layer {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: translateX(-100%);
        animation: masterWipeLoop 4s cubic-bezier(0.86, 0, 0.07, 1) infinite;
      }
      .block-black-1 {
        background: #000;
        z-index: 1;
        animation-delay: 0s;
      }
      .block-mint-1 {
        background: #61ffa6;
        z-index: 2;
        animation-delay: 0.15s;
      }
      .block-black-2 {
        background: #000;
        z-index: 3;
        animation-delay: 0.3s;
      }
      .block-mint-2 {
        background: #61ffa6;
        z-index: 4;
        animation-delay: 0.45s;
      }

      .dr-nav-item {
        position: static;
      }
      .dr-nav-link,
      .dr-megamenu-panel a,
      .dr-mobile-overlay a,
      .prustaz-footer-grid a {
        cursor: pointer;
      }
     .dr-megamenu-panel {
  position: fixed;
  top: var(--prustaz-header-height, 76px);
  left: 0;
  width: 100vw;
  background: #fff;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.05),
    0 4px 6px -4px rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid #f3f4f6;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s;
  pointer-events: none;
  z-index: 999;
}

      .dr-mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 10000;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
        visibility: hidden;
      }
      .dr-mobile-overlay.active {
        transform: translateX(0);
        visibility: visible;
      }
      @media (max-width: 1024px) {
        .dr-nav-menu-desktop {
          display: none !important;
        }
        .dr-icon-btn,
        .dr-btn-secondary-nav {
          display: none !important;
        }
        .dr-menu-toggle {
          display: flex !important;
        }
      }
      @media (min-width: 1025px) {
        .dr-menu-toggle {
          display: none !important;
        }
      }

      .dr-matrix-card {
        position: relative;
        cursor: pointer;
      }
      .dr-matrix-card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 4px;
        background: #4ade80;
        transition: width 0.35s cubic-bezier(0.25, 1, 0.5, 1);
        border-radius: 0 0 4px 4px;
      }
      .dr-matrix-card:hover::after {
        width: 100%;
      }

      .btn-cta-dark {
        position: relative;
        overflow: hidden;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .btn-cta-dark::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #22252a;
        transform: translateY(100%);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1;
      }
      .btn-cta-dark:hover::before {
        transform: translateY(0);
      }
      .btn-cta-dark:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(12, 13, 14, 0.15);
      }
      .btn-cta-dark .btn-text {
        position: relative;
        z-index: 2;
      }

      .recognition-card {
        transition:
          transform 0.25s ease,
          box-shadow 0.25s ease;
      }
      .recognition-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
      }
      .case-study-visual-card {
        transition:
          transform 0.25s ease,
          box-shadow 0.25s ease;
      }
      .case-study-visual-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
      }
      .simulated-asset-img {
        transition: transform 0.3s ease;
      }
      .case-study-visual-card:hover .simulated-asset-img {
        transform: scale(1.03);
      }

      .phase-card-inner {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
        min-width: 0;
      }
      @media (min-width: 1024px) {
        .phase-card-inner {
          flex-direction: row;
          gap: 2rem;
          align-items: center;
        }
      }
      .phase-card-inner > .flex-1 {
        min-width: 0;
      }
      @media (max-width: 1023px) {
        .phase-card-inner > .flex-1:last-child {
          width: 100%;
          display: flex;
          justify-content: center;
        }
      }

      .mock-chart {
        position: relative;
        height: 160px;
        border-left: 1px dashed #333;
        border-bottom: 1px dashed #333;
        margin-bottom: 1.25rem;
        margin-left: 0.5rem;
      }
      @media (max-width: 640px) {
        .mock-chart {
          height: 120px;
        }
      }

      /* Horizontal rhythm: px-6 → sm:px-10 → md:px-16 → lg:px-20 */
      .section-padding {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
      }
      @media (min-width: 640px) {
        .section-padding {
          padding-left: 2.5rem !important;
          padding-right: 2.5rem !important;
        }
      }
      @media (min-width: 768px) {
        .section-padding {
          padding-left: 4rem !important;
          padding-right: 4rem !important;
        }
      }
      @media (min-width: 1024px) {
        .section-padding {
          padding-left: 5rem !important;
          padding-right: 5rem !important;
        }
      }

      /* V2 content shell — same padding as header/footer blocks */
      .prustaz-v2-container {
        width: 100%;
        max-width: 1440px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }
      @media (min-width: 640px) {
        .prustaz-v2-container {
          padding-left: 2.5rem;
          padding-right: 2.5rem;
        }
      }
      @media (min-width: 768px) {
        .prustaz-v2-container {
          padding-left: 4rem;
          padding-right: 4rem;
        }
      }
      @media (min-width: 1024px) {
        .prustaz-v2-container {
          padding-left: 5rem;
          padding-right: 5rem;
        }
      }

.launchpad-story-list {
  margin: 2rem 0 0;
  padding-left: 1.5rem;
  list-style-type: disc;
}
.launchpad-story-list li {
  margin-bottom: 0.625rem;
  padding-left: 0.25rem;
  font-size: clamp(1rem, 1.6vw, 1.0625rem);
  line-height: 1.65;
  color: #334155;
}
.launchpad-story-list li::marker {
  color: #4f46e5;
}
.launchpad-story-list li.launchpad-story-list__highlight {
  color: #0f172a;
  font-weight: 600;
}
.launchpad-story-list li.launchpad-story-list__highlight::marker {
  color: #4f46e5;
}
.launchpad-story-list strong {
  color: #0f172a;
  font-weight: 600;
}

.challenge-body p {
  margin-bottom: 1rem;
}
.challenge-body p:last-child {
  margin-bottom: 0;
}
.challenge-body ul,
.challenge-body ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.challenge-body ul {
  list-style-type: disc;
}
.challenge-body ol {
  list-style-type: decimal;
}
.challenge-body li {
  margin-bottom: 0.5rem;
}
.challenge-body li::marker {
  color: #71ffbb;
}
.challenge-body ul ul,
.challenge-body ol ol,
.challenge-body ul ol,
.challenge-body ol ul {
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.challenge-body strong {
  color: #71ffbb;
  font-weight: 500;
}

/* ─── Site header (mobile-first) ─────────────────────────────────────────── */
:root {
  --prustaz-header-height: 60px;
}

@media (min-width: 640px) {
  :root {
    --prustaz-header-height: 68px;
  }
}

@media (min-width: 1024px) {
  :root {
    --prustaz-header-height: 76px;
  }
}

.prustaz-header .section-padding {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

@media (min-width: 640px) {
  .prustaz-header .section-padding {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

@media (min-width: 768px) {
  .prustaz-header .section-padding {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
}

@media (min-width: 1024px) {
  .prustaz-header .section-padding {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
}

.prustaz-header-inner {
  height: var(--prustaz-header-height);
  min-height: var(--prustaz-header-height);
}

.prustaz-header-logo-wrap {
  flex: 0 1 auto;
  min-width: 0;
  max-width: min(42vw, 9.5rem);
}

@media (min-width: 640px) {
  .prustaz-header-logo-wrap {
    max-width: none;
  }
}

.prustaz-header-logo {
  display: block;
  height: 24px;
  width: auto;
  max-width: 100%;
  max-height: 24px;
  object-fit: contain;
}

@media (min-width: 640px) {
  .prustaz-header-logo {
    height: 28px;
    max-height: 28px;
  }
}

@media (min-width: 1024px) {
  .prustaz-header-logo {
    height: 32px;
    max-height: 32px;
  }
}

.prustaz-header-actions {
  gap: 0.375rem;
}

@media (min-width: 640px) {
  .prustaz-header-actions {
    gap: 0.625rem;
  }
}

.prustaz-header-cta {
  height: 2.25rem;
  padding: 0 0.75rem;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: -0.01em;
}

@media (min-width: 640px) {
  .prustaz-header-cta {
    height: 2.5rem;
    padding: 0 1rem;
    font-size: 0.875rem;
  }
}

@media (min-width: 1024px) {
  .prustaz-header-cta {
    height: 2.625rem;
    padding: 0 1.375rem;
  }
}

@media (max-width: 359px) {
  .prustaz-header-cta {
    padding: 0 0.625rem;
    font-size: 0.6875rem;
  }
}

.prustaz-header-menu-toggle {
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  gap: 5px;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .prustaz-header-menu-toggle {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
  }
}

.prustaz-header-menu-bar {
  display: block;
  width: 1.125rem;
  height: 2px;
}

@media (min-width: 640px) {
  .prustaz-header-menu-bar {
    width: 1.25rem;
  }
}

/* Mobile drawer top bar — match main header rhythm */
.dr-mobile-overlay > .prustaz-header-mobile-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--prustaz-header-height);
  padding: 0 1rem;
  border-bottom: 1px solid #e5e7eb;
}

@media (min-width: 640px) {
  .dr-mobile-overlay > .prustaz-header-mobile-bar {
    padding: 0 1.5rem;
  }
}

.dr-mobile-overlay .close-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  color: #000;
  background: transparent;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.15s ease;
  flex-shrink: 0;
}

.dr-mobile-overlay .close-mobile:hover {
  background: #f3f4f6;
}

.dr-mobile-overlay .close-mobile svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Footer brand column — compact, responsive */
.prustaz-footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 2rem;
  row-gap: 2.5rem;
}
@media (min-width: 640px) {
  .prustaz-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 2.5rem;
    row-gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .prustaz-footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .prustaz-footer-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    column-gap: 2rem;
  }
}
.prustaz-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: flex-start;
  grid-column: span 2 / span 2;
}
@media (min-width: 640px) {
  .prustaz-footer-brand {
    grid-column: span 3 / span 3;
  }
}
@media (min-width: 1024px) {
  .prustaz-footer-brand {
    grid-column: span 4 / span 4;
  }
}
@media (min-width: 1280px) {
  .prustaz-footer-brand {
    grid-column: span 1 / span 1;
  }
}
.prustaz-footer-brand__logo {
  display: block;
  height: 32px;
  width: auto;
  object-fit: contain;
}
.prustaz-footer-brand__social {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-wrap: wrap;
}
.prustaz-footer-brand__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 1px solid #404040;
  color: #a3a3a3;
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.prustaz-footer-brand__social-link:hover {
  color: #fff;
  border-color: #737373;
}
.prustaz-footer-brand__social-link svg {
  width: 0.875rem;
  height: 0.875rem;
}

.dr-nav-item:hover .dr-megamenu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dr-megamenu-featured {
  flex-shrink: 0;
}

.dr-megamenu-link-groups {
  flex: 1 1 0;
  min-width: 0;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .dr-megamenu-link-groups {
    flex-wrap: wrap;
    row-gap: 2rem;
  }
  .dr-megamenu-link-groups--single-row {
    flex-wrap: nowrap;
  }
  .dr-megamenu-column {
    flex: 0 0 auto;
    min-width: 10.5rem;
  }
}

/* Blog index page (from theme_new/blog.html) */
.blog-card {
  min-height: 260px;
}
@media (max-width: 1023px) {
  .sidebar-filters {
    display: none;
  }
  .sidebar-filters.open {
    display: block;
  }
}
.pagination-wrap {
  flex-wrap: wrap;
}

/* Simple hero — optional V2 background colors (theme_new/gen-ai.html) */
.prustaz-simple-hero {
  padding-top: 4rem;
  padding-bottom: 3rem;
}
.prustaz-simple-hero--has-bg {
  padding-top: clamp(60px, 12vw, 110px);
  padding-bottom: 2.5rem;
}
.prustaz-simple-hero--white {
  background-color: #fff;
  color: #0f172a;
}
.prustaz-simple-hero--mint {
  background-color: #61ffa6;
  color: #0c462d;
}
.prustaz-simple-hero--lavender {
  background-color: #a5abff;
  color: #18181b;
}
.prustaz-simple-hero--mint-bright {
  background-color: #71ffbb;
  color: #0c462d;
}
.prustaz-simple-hero--teal {
  background-color: #68f1cc;
  color: #0f172a;
}
.prustaz-simple-hero--yellow {
  background-color: #ffff41;
  color: #0f172a;
}
.prustaz-simple-hero--yellow-band {
  background-color: #f7ff4a;
  color: #0f172a;
}
.prustaz-simple-hero--cyan {
  background-color: #44e3fd;
  color: #0f172a;
}
.prustaz-simple-hero--blue {
  background-color: #0c7bf8;
  color: #fff;
}
.prustaz-simple-hero--soft-lavender {
  background-color: #a3b1ff;
  color: #18181b;
}
.prustaz-simple-hero--light-purple {
  background-color: #ac9eff;
  color: #18181b;
}
.prustaz-simple-hero--purple {
  background-color: #6c55ff;
  color: #fff;
}
.prustaz-simple-hero--deep-purple {
  background-color: #563dff;
  color: #fff;
}
.prustaz-simple-hero--gray {
  background-color: #eaebed;
  color: #0f172a;
}
.prustaz-simple-hero--dark {
  background-color: #0b111e;
  color: #fff;
}
.prustaz-simple-hero--black {
  background-color: #000;
  color: #fff;
}
.prustaz-simple-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
}
.prustaz-simple-hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  background-color: #6c55ff;
  flex-shrink: 0;
}
.prustaz-simple-hero--dark .prustaz-simple-hero__eyebrow-dot,
.prustaz-simple-hero--black .prustaz-simple-hero__eyebrow-dot,
.prustaz-simple-hero--blue .prustaz-simple-hero__eyebrow-dot,
.prustaz-simple-hero--purple .prustaz-simple-hero__eyebrow-dot,
.prustaz-simple-hero--deep-purple .prustaz-simple-hero__eyebrow-dot {
  background-color: #71ffbb;
}
.prustaz-simple-hero--yellow .prustaz-simple-hero__eyebrow-dot,
.prustaz-simple-hero--yellow-band .prustaz-simple-hero__eyebrow-dot {
  background-color: #6c55ff;
}
.prustaz-simple-hero__title {
  margin: 0;
  font-size: clamp(1.875rem, 4vw, 2.625rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 56rem;
}
.prustaz-simple-hero--has-bg .prustaz-simple-hero__title {
  font-size: clamp(42px, 10vw, 70px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}
.prustaz-simple-hero__intro {
  margin: 1rem 0 0;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  max-width: 48rem;
  opacity: 0.9;
}
.prustaz-simple-hero--dark .prustaz-simple-hero__intro,
.prustaz-simple-hero--black .prustaz-simple-hero__intro,
.prustaz-simple-hero--blue .prustaz-simple-hero__intro,
.prustaz-simple-hero--purple .prustaz-simple-hero__intro,
.prustaz-simple-hero--deep-purple .prustaz-simple-hero__intro {
  color: #e5e7eb;
}

/* Blog detail article prose (from theme_new/blog-details.html) */
.prose-article p {
  font-size: clamp(15px, 1.6vw, 16px);
  line-height: 1.7;
  color: #222;
  margin-bottom: 1.25rem;
}
.prose-article h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #000;
  margin-bottom: 1.25rem;
}
.prose-article h3 {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: #000;
  margin-bottom: 0.75rem;
}
.prose-article code {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  color: #e3564a;
  font-weight: 500;
  letter-spacing: 0.01em;
}
/* Full code blocks — Prism handles highlighted token colors */
.code-block-wrap pre[class*="language-"] {
  background: #1c1f24 !important;
  margin: 0;
  padding: 1rem;
  font-size: 12px;
  line-height: 1.65;
  overflow-x: auto;
}
.code-block-wrap pre[class*="language-"] code {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-weight: 400;
  background: transparent !important;
  text-shadow: none;
}
.code-block-wrap pre:not([class*="language-"]) code {
  color: #d1d5db;
  font-weight: 400;
}
.code-block-wrap pre:not([class*="language-"]) {
  color: #d1d5db;
  margin: 0;
}
.prose-article a {
  color: #2563eb;
}
.prose-article a:hover {
  text-decoration: underline;
}
.prose-article blockquote {
  border-left: 4px solid #000;
  padding-left: 1rem;
  margin: 1.25rem 0;
  font-style: italic;
  color: #333;
}
.code-block-wrap {
  overflow-x: auto;
}

/* V2 feature pages — consistent vertical rhythm and footer clearance */
.prustaz-v2-page {
  overflow-x: hidden;
}

.prustaz-v2-page > section:last-child {
  margin-bottom: 0;
}

/* Extra clearance before site footer when the last block is a CTA or content section */
.prustaz-v2-page > section:last-child:not([class*="bg-black"]):not([class*="bg-[#0b111e]"]) {
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}

/* Tighter mobile grids for portfolio / solution cards */
@media (max-width: 767px) {
  .prustaz-v2-page .prustaz-v2-container .grid.grid-cols-1.md\:grid-cols-3 {
    gap: 1rem;
  }
}

/* Portfolio CSR band: comfortable mobile stacking */
@media (max-width: 767px) {
  .prustaz-v2-page section .md\:col-span-4 p {
    text-align: left;
  }
}

/* ─── Launchpad pricing tables ───────────────────────────────────────────── */
.lp-pricing {
  --lp-navy: #16335c;
  --lp-teal: #2baf9e;
  --lp-row-alt: #f2f6f9;
  --lp-border: #d8e2ec;
  color: #1e293b;
  font-family: Inter, Calibri, system-ui, sans-serif;
}

.lp-pricing__category-shell {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.lp-pricing__category + .lp-pricing__category .lp-pricing__category-shell {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.lp-pricing__category-body {
  padding: 0;
}

.lp-pricing__table-block + .lp-pricing__table-block {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.lp-pricing__table-title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--lp-navy);
  margin: 0 0 1rem;
  padding: 0;
  text-align: left;
}

.lp-pricing__table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--lp-border);
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 1px 3px rgba(22, 51, 92, 0.06);
}

.lp-pricing__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9375rem;
  line-height: 1.45;
  table-layout: fixed;
}

.lp-pricing__table thead th {
  background: var(--lp-navy);
  color: #fff;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  padding: 0.85rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-pricing__table thead th.lp-pricing__feature-col {
  text-align: left;
  width: 26%;
}

.lp-pricing__table thead th:last-child {
  border-right: none;
}

.lp-pricing__table tbody th.lp-pricing__feature-col {
  text-align: left;
  min-width: 11rem;
  width: 26%;
  font-weight: 600;
  color: var(--lp-navy);
  background: #fff;
  padding: 0.85rem 1rem;
  border-right: 1px solid var(--lp-border);
  vertical-align: middle;
}

.lp-pricing__table tbody tr:nth-child(even) .lp-pricing__feature-col,
.lp-pricing__table tbody tr:nth-child(even) td {
  background: var(--lp-row-alt);
}

.lp-pricing__table tbody td {
  text-align: center;
  vertical-align: middle;
  padding: 0.85rem 1rem;
  border-right: 1px solid var(--lp-border);
}

.lp-pricing__table tbody td:last-child {
  border-right: none;
}

.lp-pricing__table tbody tr {
  border-bottom: 1px solid var(--lp-border);
}

.lp-pricing__table tbody tr:last-child {
  border-bottom: none;
}

.lp-pricing__price {
  color: var(--lp-teal);
  font-weight: 700;
}

.lp-pricing__cell-value {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 1.35rem;
  text-align: center;
}

.lp-pricing__cell-value--feature {
  justify-content: flex-start;
  text-align: left;
}

.lp-pricing__table tbody th .lp-pricing__cell-value--feature {
  font-weight: 600;
}

.lp-pricing__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--lp-teal);
  vertical-align: middle;
}

.lp-pricing__check svg {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
}

.lp-pricing__dash {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  min-height: 1.25rem;
  color: #94a3b8;
  font-weight: 500;
  vertical-align: middle;
  line-height: 1;
}

.lp-pricing__footnote {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #475569;
  font-style: italic;
}

.lp-pricing__callout {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--lp-teal);
  background: #ecfdf9;
  border-radius: 0 0.5rem 0.5rem 0;
}

.lp-pricing__callout p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #134e4a;
}

.lp-pricing__extras {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: #fff;
  border-top: 1px solid var(--lp-border);
}

.lp-pricing__section-content {
  max-width: 100%;
}

.lp-pricing__section-heading {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  color: var(--lp-navy);
  margin: 0 0 0.75rem;
  padding: 0;
}

.lp-pricing__section-intro {
  margin: 0 0 1.25rem;
  max-width: 52rem;
  line-height: 1.65;
  color: #475569;
  padding: 0;
}

.lp-pricing__hosting-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .lp-pricing__hosting-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.lp-pricing__hosting-card {
  background: var(--lp-row-alt);
  border: 1px solid var(--lp-border);
  border-radius: 0.75rem;
  padding: 1.25rem 1.35rem;
}

.lp-pricing__hosting-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--lp-navy);
  margin: 0 0 0.5rem;
}

.lp-pricing__hosting-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--lp-teal);
  margin: 0 0 0.65rem;
  line-height: 1.35;
}

.lp-pricing__hosting-card-summary {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #475569;
}

.lp-pricing__domain-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--lp-border);
  border-radius: 0.75rem;
  max-width: 36rem;
}

.lp-pricing__domain-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  table-layout: fixed;
}

.lp-pricing__domain-table thead th {
  background: var(--lp-navy);
  color: #fff;
  text-align: left;
  vertical-align: middle;
  padding: 0.75rem 1rem;
  font-weight: 600;
}

.lp-pricing__domain-table tbody th,
.lp-pricing__domain-table tbody td {
  vertical-align: middle;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--lp-border);
}

.lp-pricing__domain-table tbody tr:nth-child(even) th,
.lp-pricing__domain-table tbody tr:nth-child(even) td {
  background: var(--lp-row-alt);
}

.lp-pricing__terms {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.lp-pricing__terms-list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 52rem;
}

.lp-pricing__terms-list li {
  position: relative;
  margin: 0;
  padding: 0.65rem 0 0.65rem 1.35rem;
  line-height: 1.65;
  color: #334155;
  border-bottom: 1px solid var(--lp-border);
}

.lp-pricing__terms-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--lp-teal);
}

.lp-pricing__terms-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.lp-pricing__terms-list li:first-child {
  padding-top: 0;
}

.lp-pricing__terms-list li:first-child::before {
  top: 0.5rem;
}

.lp-pricing__company {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 6vw, 4.5rem);
  background: var(--lp-row-alt);
  border-top: 1px solid var(--lp-border);
}

.lp-pricing__company-details {
  margin: 0;
  line-height: 1.7;
  color: #334155;
}

.lp-pricing__company-details p {
  margin: 0 0 0.35rem;
}

.lp-pricing__company-label {
  font-weight: 600;
  color: var(--lp-navy);
}

.lp-pricing__company-details a {
  color: var(--lp-teal);
  text-decoration: none;
}

.lp-pricing__company-details a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .lp-pricing__table {
    font-size: 0.875rem;
  }

  .lp-pricing__table thead th,
  .lp-pricing__table tbody th,
  .lp-pricing__table tbody td {
    padding: 0.7rem 0.75rem;
  }
}

/* ─── Contact page ─────────────────────────────────────────────────────────── */
.prustaz-contact {
  --contact-navy: #16335c;
  --contact-teal: #2baf9e;
  --contact-border: #d8e2ec;
  --contact-muted: #475569;
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem);
  background: #fff;
}

.prustaz-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: start;
}

@media (min-width: 992px) {
  .prustaz-contact__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    gap: 2rem;
  }
}

.prustaz-contact__info {
  background: #f8fafc;
  border: 1px solid var(--contact-border);
  border-radius: 1rem;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.prustaz-contact__company {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--contact-navy);
  margin: 0 0 0.65rem;
  line-height: 1.25;
}

.prustaz-contact__intro {
  margin: 0 0 1.35rem;
  color: var(--contact-muted);
  line-height: 1.65;
  font-size: 0.98rem;
}

.prustaz-contact__office + .prustaz-contact__office {
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--contact-border);
}

.prustaz-contact__office-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--contact-teal);
  margin: 0 0 0.45rem;
}

.prustaz-contact__office-address {
  margin: 0;
  color: #334155;
  line-height: 1.65;
  font-size: 0.95rem;
}

.prustaz-contact__details {
  margin: 1.35rem 0 0;
  padding: 1.15rem 0 0;
  border-top: 1px solid var(--contact-border);
}

.prustaz-contact__detail-row {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid #e8eef4;
  font-size: 0.95rem;
}

.prustaz-contact__detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.prustaz-contact__detail-row dt {
  font-weight: 600;
  color: var(--contact-navy);
  margin: 0;
}

.prustaz-contact__detail-row dd {
  margin: 0;
  color: #334155;
  line-height: 1.5;
  word-break: break-word;
}

.prustaz-contact__detail-row a {
  color: var(--contact-teal);
  text-decoration: none;
  font-weight: 500;
}

.prustaz-contact__detail-row a:hover {
  text-decoration: underline;
}

.prustaz-contact__cta-card {
  position: sticky;
  top: 6.5rem;
}

.prustaz-contact__cta-inner {
  background: linear-gradient(160deg, #16335c 0%, #1f4d7a 55%, #2baf9e 160%);
  color: #fff;
  border-radius: 1.1rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: 0 18px 40px rgba(22, 51, 92, 0.18);
}

.prustaz-contact__cta-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.prustaz-contact__cta-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
}

.prustaz-contact__cta-copy {
  margin: 0 0 1.35rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.prustaz-contact__whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 3.6rem;
  padding: 0.9rem 1.35rem;
  border-radius: 0.85rem;
  background: #25d366;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.prustaz-contact__whatsapp-btn:hover {
  background: #20bd5a;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  color: #fff;
}

.prustaz-contact__whatsapp-icon {
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.prustaz-contact__whatsapp-icon svg {
  width: 100%;
  height: 100%;
}

.prustaz-contact__response-note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 991px) {
  .prustaz-contact__cta-card {
    position: static;
  }

  .prustaz-contact__detail-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}