:root {
  --primary: #0b4dff;
  --dark-blue: #05289e;
  --navy: #0a1b54;
  --white: #ffffff;
  --pale: #f6faff;
  --border: #b9ceff;
  --border-strong: #0b4dff;
  --text: #22305a;
  --muted: #66739c;
  --success: #0e9f6e;
  --shadow: 0 18px 42px rgba(10, 27, 84, 0.09);
  --radius: 32px;
  --section-x: clamp(1rem, 4vw, 4.5rem);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  animation: page-enter 360ms cubic-bezier(0.16, 1, 0.3, 1) both;
  transition: opacity 260ms ease, filter 260ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: 50% 36px;
}

body.is-leaving {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(12px) scale(0.985);
}

@keyframes page-enter {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(14px) scale(0.985);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  appearance: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: 0.9rem var(--section-x);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.brand {
  display: block;
  width: clamp(142px, 18vw, 210px);
}

.brand img,
.site-footer img {
  mix-blend-mode: multiply;
}

.main-nav {
  display: flex;
  justify-self: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.35rem;
  border: 1px solid rgba(11, 77, 255, 0.18);
  border-radius: 999px;
  color: var(--navy);
  background: var(--pale);
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a,
.text-link {
  position: relative;
}

.main-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--primary);
  background: var(--white);
  line-height: 1;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 140ms ease;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: -0.3rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 10px 24px rgba(11, 77, 255, 0.16);
}

.main-nav a:active,
.header-cta:active,
.cart-button:active,
.btn:active,
.menu-toggle:active,
.payment-option:active,
.detail-link:active {
  transform: translateY(1px) scale(0.98);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--primary);
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 140ms ease;
}

.menu-toggle:active {
  color: var(--white);
  background: var(--primary);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.header-cta,
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0.65rem;
  padding-left: 1.15rem;
  border-left: 1px solid var(--border);
}

.header-cta {
  padding: 0.75rem 1rem;
  color: var(--primary);
  background: var(--white);
  border-color: var(--border-strong);
}

.cart-button {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  transition: transform 140ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.cart-button.active {
  color: var(--white);
  background: var(--primary);
}

.cart-button.active span {
  color: var(--primary);
  background: var(--white);
  border-color: var(--primary);
}

.cart-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cart-button span {
  position: absolute;
  top: -0.45rem;
  right: -0.45rem;
  display: inline-flex;
  min-width: 1.35rem;
  height: 1.35rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.3rem;
  color: var(--white);
  background: var(--primary);
  border: 2px solid var(--white);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.section,
.section-band {
  padding: clamp(3.4rem, 7vw, 6.5rem) var(--section-x);
}

.section {
  max-width: 1280px;
  margin: 0 auto;
}

.section.pale,
.section-band {
  max-width: none;
  background: var(--pale);
}

.section.pale > *,
.section-band > * {
  max-width: 1280px;
}

.section.pale > * {
  margin-right: auto;
  margin-left: auto;
}

.hero {
  display: grid;
  min-height: calc(100vh - 76px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background: linear-gradient(180deg, var(--white) 0%, var(--pale) 100%);
}

.hero-copy,
.hero-panel {
  margin: 0 auto;
}

.hero-copy {
  max-width: 680px;
  justify-self: end;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.08;
}

h1 {
  max-width: 15ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.6rem, 5.4vw, 4.9rem);
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.35rem;
}

.hero-text {
  max-width: 58ch;
  margin-bottom: 1.6rem;
  color: var(--text);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.btn {
  padding: 0.9rem 1.1rem;
}

.btn.primary {
  color: var(--primary);
  background: var(--white);
  border-color: var(--border-strong);
}

.btn.secondary {
  color: var(--primary);
  background: var(--white);
  border-color: var(--border-strong);
}

.btn.ghost {
  color: var(--dark-blue);
  background: var(--white);
  border-color: var(--border-strong);
}

.btn:hover,
.header-cta:hover,
.cart-button:hover,
.addon-button:hover,
.btn:focus,
.header-cta:focus,
.cart-button:focus,
.addon-button:focus,
.btn:focus-visible,
.header-cta:focus-visible,
.cart-button:focus-visible,
.addon-button:focus-visible,
.btn:active,
.header-cta:active,
.cart-button:active,
.addon-button:active {
  color: var(--dark-blue);
  background: var(--white);
  border-color: var(--border-strong);
  outline: 3px solid rgba(11, 77, 255, 0.16);
  outline-offset: 2px;
  box-shadow: 0 10px 24px rgba(11, 77, 255, 0.12);
}

.btn.full {
  width: 100%;
}

.hero-metrics {
  display: grid;
  max-width: 520px;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 0;
}

.hero-metrics div {
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
}

.hero-metrics dt {
  color: var(--navy);
  font-size: 1.45rem;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-panel {
  width: min(100%, 520px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.browser-bar {
  display: flex;
  gap: 0.45rem;
  padding: 0.95rem 1rem;
  background: var(--white);
  border-bottom: 1px solid var(--border-strong);
}

.browser-bar span {
  width: 0.72rem;
  height: 0.72rem;
  background: var(--primary);
  border-radius: 999px;
  opacity: 0.45;
}

.order-preview {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.preview-label,
.summary-id {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-price {
  margin-bottom: 1.25rem;
  color: var(--primary);
  font-size: 2.2rem;
  font-weight: 900;
}

.order-preview ul,
.feature-list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0 0 1.5rem;
  list-style: none;
}

.order-preview li,
.feature-list li {
  position: relative;
  padding-left: 1.55rem;
}

.order-preview li::before,
.feature-list li::before {
  position: absolute;
  top: 0.15rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1rem;
  text-align: center;
  content: "\2713";
  background: var(--primary);
  border-radius: 999px;
}

.mini-summary,
.summary-row,
.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mini-summary {
  padding: 1rem;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(1.7rem, 4vw, 2.7rem);
}

.page-hero {
  padding-bottom: clamp(2.2rem, 4vw, 4rem);
}

.page-hero h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
}

.section-heading.split {
  display: flex;
  max-width: 1280px;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.text-link {
  color: var(--primary);
  font-weight: 900;
  white-space: nowrap;
}

.value-grid,
.pricing-grid,
.addon-grid,
.portfolio-grid,
.admin-stats,
.feature-showcase,
.package-detail-grid,
.support-grid,
.contact-path-grid,
.compare-grid {
  display: grid;
  gap: 1rem;
}

.value-grid {
  grid-template-columns: repeat(3, 1fr);
}

.insight-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

.insight-strip article {
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
}

.insight-strip span,
.compare-grid span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.insight-strip strong,
.compare-grid strong {
  color: var(--navy);
}

.value-grid article,
.addon-grid article,
.admin-stats article,
.summary-card,
.checkout-form,
.faq-list details,
.price-card,
.portfolio-item,
.confirmation-card,
.cart-page-card,
.feature-showcase article,
.package-detail-grid article,
.support-grid article,
.contact-path-grid article,
.compare-grid article,
.case-list article {
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
}

.value-grid article {
  padding: 1.35rem;
}

.feature-showcase,
.package-detail-grid,
.support-grid,
.contact-path-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-showcase article,
.package-detail-grid article,
.support-grid article,
.contact-path-grid article {
  padding: 1.25rem;
}

.showcase-number {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0.35rem 0.7rem;
  margin-bottom: 1rem;
  color: var(--primary);
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 950;
}

.compact-list {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.compact-list li {
  padding: 0.55rem 0.75rem;
  color: var(--navy);
  background: var(--pale);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) / 2);
  font-weight: 800;
}

.icon-chip {
  display: inline-flex;
  width: 2.3rem;
  height: 2.3rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--white);
  background: var(--primary);
  border-radius: var(--radius);
  font-weight: 900;
}

.filter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.filter-strip span,
.status-pill,
.addon-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.72rem;
  color: var(--dark-blue);
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 1.25rem;
  box-shadow: none;
}

.price-card.popular {
  border-color: var(--primary);
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 18px 36px rgba(11, 77, 255, 0.2);
}

.price-card.popular h3,
.price-card.popular .price,
.price-card.popular .duration,
.price-card.popular p,
.price-card.popular li {
  color: var(--white);
}

.price-card.popular .feature-list li::before {
  color: var(--primary);
  background: var(--white);
}

.price-card.popular .btn {
  color: var(--primary);
  background: var(--white);
  border-color: var(--white);
}

.price-card.is-selected {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 3px rgba(11, 77, 255, 0.12);
}

.price-card:hover,
.value-grid article:hover,
.addon-grid article:hover,
.portfolio-item:hover,
.faq-list details:hover {
  border-color: var(--border-strong);
  box-shadow: 0 12px 28px rgba(11, 77, 255, 0.08);
}

.popular-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.6rem;
  color: var(--primary);
  background: var(--white);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
}

.price-head {
  min-height: 116px;
  padding-right: 3rem;
}

.price-head p,
.value-grid p,
.portfolio-grid p,
.faq-list p,
.payment-note {
  color: var(--muted);
}

.price {
  margin-bottom: 0.35rem;
  color: var(--navy);
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  font-weight: 950;
  line-height: 1.1;
}

.duration {
  margin-bottom: 1.25rem;
  color: var(--dark-blue);
  font-weight: 800;
}

.feature-list {
  flex: 1;
}

.addon-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.addon-grid article {
  display: grid;
  align-content: start;
  padding: 1.15rem;
}

.addon-grid h3 {
  font-size: 1.05rem;
}

.addon-grid p {
  margin-bottom: 0.85rem;
  color: var(--navy);
  font-weight: 900;
}

.addon-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  justify-self: start;
  padding: 0.65rem 0.85rem;
  margin-top: 1rem;
  color: var(--primary);
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
}

.addon-button.is-selected,
.btn.is-selected {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  min-height: 190px;
  padding: 4.2rem 1.1rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  counter-increment: process;
}

.process-list li::before {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 2.35rem;
  height: 2.35rem;
  color: var(--white);
  font-weight: 900;
  line-height: 2.35rem;
  text-align: center;
  content: counter(process, decimal-leading-zero);
  background: var(--primary);
  border-radius: var(--radius);
}

.process-list strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--navy);
  font-size: 1.12rem;
}

.process-list span {
  color: var(--muted);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 1.25rem;
  align-items: start;
}

.cart-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 1.25rem;
  align-items: start;
}

.cart-page-card {
  padding: clamp(1.1rem, 3vw, 1.7rem);
}

.checkout-form {
  display: grid;
  gap: 1.4rem;
  padding: clamp(1.1rem, 3vw, 1.7rem);
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.8rem 0.9rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: 0;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 4px rgba(11, 77, 255, 0.11);
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.payment-option {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0.75rem;
  align-items: center;
  min-height: 100%;
  padding: 0.9rem;
  margin: 0;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
}

.payment-option:has(input:checked) {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 3px rgba(11, 77, 255, 0.1);
}

.payment-option input {
  width: 1rem;
  min-height: 1rem;
  margin: 0;
  accent-color: var(--primary);
}

.payment-logo {
  width: 76px;
  max-height: 34px;
  object-fit: contain;
}

.payment-logo.qris-logo {
  width: 82px;
  max-height: 34px;
  object-fit: contain;
}

.payment-option strong,
.payment-option small {
  display: block;
}

.payment-option small {
  margin-top: 0.15rem;
  color: var(--muted);
  font-weight: 600;
}

.confirmation-section {
  padding-top: 1rem;
}

.confirmation-card {
  max-width: 760px;
  padding: clamp(1.2rem, 3vw, 1.8rem);
}

.confirmation-card p:not(.eyebrow) {
  color: var(--muted);
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.order-confirmation-box {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  margin-top: 1rem;
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
}

.order-confirmation-box strong {
  color: var(--navy);
}

.order-confirmation-box span {
  color: var(--muted);
  font-weight: 700;
}

.summary-card {
  position: sticky;
  top: 96px;
  padding: 1.2rem;
  box-shadow: none;
}

.summary-card h3 {
  margin-bottom: 1.1rem;
}

.checkout-items {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.checkout-line span {
  color: var(--muted);
  font-size: 0.9rem;
}

.checkout-message {
  min-height: 1.4rem;
  margin: 0;
  color: var(--dark-blue);
  font-weight: 800;
}

.empty-summary {
  padding: 0.85rem;
  margin: 0 0 0.75rem;
  color: var(--muted);
  background: var(--pale);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.btn[disabled],
.btn.is-disabled {
  color: var(--muted);
  background: #f8fbff;
  border-color: var(--border);
  box-shadow: none;
  cursor: not-allowed;
}

.summary-row {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.summary-row.muted {
  color: var(--success);
}

.summary-total {
  padding: 1rem 0;
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 950;
}

.payment-box {
  display: grid;
  gap: 0.75rem;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.qris-placeholder {
  overflow: hidden;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
}

.qris-placeholder img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 6px;
}

.payment-account {
  display: grid;
  gap: 0.2rem;
  padding: 0.8rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.payment-account span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.payment-account span img {
  width: 64px;
  max-height: 28px;
  object-fit: contain;
}

.payment-account strong {
  color: var(--navy);
  font-size: 0.95rem;
}

.payment-account small {
  color: var(--muted);
  font-weight: 700;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
}

.timeline div {
  position: relative;
  min-height: 180px;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
}

.timeline span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  color: var(--dark-blue);
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-weight: 900;
}

.timeline strong {
  display: block;
  color: var(--navy);
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.timeline .done,
.timeline .active {
  border-color: var(--primary);
}

.timeline .done span,
.timeline .active span {
  color: var(--white);
  background: var(--primary);
}

.portfolio-grid {
  grid-template-columns: repeat(3, 1fr);
}

.case-list {
  display: grid;
  gap: 1rem;
}

.case-list article {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.4fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem;
}

.case-list article > div {
  display: grid;
  gap: 0.35rem;
}

.case-list span {
  color: var(--primary);
  font-weight: 950;
}

.case-list h3,
.case-list p {
  margin-bottom: 0;
}

.case-list p,
.feature-showcase p,
.package-detail-grid p,
.support-grid p,
.contact-path-grid p {
  color: var(--muted);
}

.case-list strong {
  justify-self: end;
  padding: 0.55rem 0.75rem;
  color: var(--primary);
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  white-space: nowrap;
}

.portfolio-item {
  min-height: 250px;
  padding: 1.25rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border-strong);
}

.portfolio-item h3,
.portfolio-item p {
  color: var(--navy);
  text-shadow: none;
}

.portfolio-item.company {
  background: var(--white);
}

.portfolio-item.commerce {
  background: var(--white);
}

.portfolio-item.startup {
  background: var(--white);
}

.admin-stats {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 1rem;
}

.compare-grid {
  grid-template-columns: repeat(4, 1fr);
}

.compare-grid article {
  padding: 1rem;
}

.admin-stats article {
  padding: 1rem;
}

.admin-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-stats strong {
  display: block;
  margin-top: 0.3rem;
  color: var(--navy);
  font-size: 1.55rem;
}

.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

caption {
  padding: 1rem;
  color: var(--navy);
  font-weight: 900;
  text-align: left;
}

th,
td {
  padding: 0.95rem 1rem;
  border-top: 1px solid var(--border);
  text-align: left;
}

th {
  color: var(--dark-blue);
  background: var(--pale);
  font-size: 0.86rem;
  text-transform: uppercase;
}

td {
  color: var(--text);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  padding: 1rem 1.1rem;
}

.faq-list summary {
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0.75rem 0 0;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  justify-items: end;
  pointer-events: none;
  visibility: hidden;
  background: rgba(5, 40, 158, 0);
  transition: background 180ms ease, visibility 180ms ease;
}

.cart-drawer:target,
.cart-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
  background: rgba(5, 40, 158, 0.26);
}

.cart-panel {
  width: min(100%, 420px);
  min-height: 100vh;
  padding: 1.2rem;
  overflow-y: auto;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform 200ms ease;
}

.cart-drawer:target .cart-panel,
.cart-drawer.is-open .cart-panel {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.close-cart {
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.empty-cart {
  padding: 1rem;
  margin: 0 0 1rem;
  color: var(--muted);
  background: var(--pale);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.cart-list {
  display: grid;
}

.cart-item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-item strong,
.cart-item span {
  display: block;
}

.cart-item strong {
  color: var(--navy);
}

.cart-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-item p {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.cart-item-actions {
  display: grid;
  justify-items: end;
  gap: 0.65rem;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
}

.qty-control button {
  width: 34px;
  height: 34px;
  color: var(--primary);
  background: var(--white);
  border: 0;
  cursor: pointer;
  font-weight: 900;
}

.qty-control button:hover,
.qty-control button:focus {
  background: var(--pale);
  outline: 0;
}

.qty-control span {
  min-width: 34px;
  color: var(--navy);
  font-weight: 900;
  text-align: center;
}

.promo-field {
  margin-top: 1rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  padding: 2rem var(--section-x);
  color: #dbe7ff;
  background: var(--navy);
}

.site-footer img {
  width: 190px;
  margin-bottom: 0.8rem;
  filter: brightness(0) invert(1);
  mix-blend-mode: normal;
}

.site-footer p {
  max-width: 460px;
  margin-bottom: 0;
}

.site-footer strong,
.site-footer a {
  display: block;
}

.site-footer strong {
  margin-bottom: 0.55rem;
  color: var(--white);
}

.site-footer a {
  margin-bottom: 0.35rem;
}

@media (max-width: 1120px) {
  .pricing-grid,
  .admin-stats,
  .insight-strip,
  .compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 0.75rem;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: start;
    justify-self: stretch;
    overflow-x: auto;
    border-radius: 24px;
    padding-bottom: 0.15rem;
  }

  .site-header.is-menu-open .main-nav {
    display: flex;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    padding-left: 0;
    border-left: 0;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-panel {
    justify-self: stretch;
  }

  h1 {
    max-width: 14ch;
  }

  .value-grid,
  .addon-grid,
  .process-list,
  .portfolio-grid,
  .feature-showcase,
  .package-detail-grid,
  .support-grid,
  .contact-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .cart-page-layout {
    grid-template-columns: 1fr;
  }

  .summary-card {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer > div:first-child {
    grid-column: 1 / -1;
  }

  .case-list article {
    grid-template-columns: 1fr;
  }

  .case-list strong {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .brand {
    width: 150px;
  }

  .header-cta {
    padding: 0.72rem 0.8rem;
    font-size: 0.88rem;
  }

  .hero {
    padding-top: 3rem;
  }

  h1 {
    max-width: 13ch;
    font-size: 2.7rem;
  }

  .hero-actions,
  .section-heading.split {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .header-cta {
    text-align: center;
  }

  .hero-metrics,
  .value-grid,
  .pricing-grid,
  .addon-grid,
  .process-list,
  .portfolio-grid,
  .admin-stats,
  .insight-strip,
  .feature-showcase,
  .package-detail-grid,
  .support-grid,
  .contact-path-grid,
  .compare-grid,
  .form-grid,
  .payment-options,
  .timeline {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .timeline div {
    min-height: auto;
  }

  .cart-drawer {
    align-items: end;
  }

  .cart-panel {
    width: 100%;
    min-height: min(86vh, 760px);
    border-radius: 8px 8px 0 0;
    transform: translateY(100%);
  }

  .cart-drawer:target .cart-panel {
    transform: translateY(0);
  }

  .cart-drawer.is-open .cart-panel {
    transform: translateY(0);
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body {
    animation: none;
    transition: none;
  }

  body.is-leaving {
    opacity: 1;
    transform: none;
  }

}
