:root {
  --bg: #05070d;
  --bg-soft: #08111d;
  --panel: rgba(6, 15, 28, 0.82);
  --panel-strong: #0b1626;
  --line: rgba(111, 183, 255, 0.28);
  --text: #f3f8ff;
  --muted: #a7b7c9;
  --blue: #2294ff;
  --cyan: #12d6ff;
  --mint: #38d88a;
  --violet: #a883ff;
  --coral: #ff8b65;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(rgba(34, 148, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 148, 255, 0.055) 1px, transparent 1px);
  background-size: 96px 96px;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  padding: 10px 5%;
  border-bottom: 1px solid rgba(111, 183, 255, 0.18);
  background: rgba(3, 7, 14, 0.74);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: 122px;
  height: 88px;
  object-fit: contain;
  padding: 0;
  border-radius: 8px;
  background: transparent;
  filter: drop-shadow(0 16px 28px rgba(18, 214, 255, 0.16));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.site-nav a {
  color: #d7e4f4;
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cyan);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(111, 183, 255, 0.28);
  border-radius: 8px;
  background: rgba(10, 22, 36, 0.9);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 132px 5% 82px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 6, 13, 0.92) 0%, rgba(3, 8, 18, 0.78) 38%, rgba(3, 8, 18, 0.28) 68%, rgba(3, 8, 18, 0.74) 100%),
    linear-gradient(180deg, rgba(3, 6, 13, 0.46) 0%, rgba(3, 8, 18, 0.22) 54%, rgba(5, 7, 13, 0.98) 100%),
    url("assets/titanmark-iceberg-hero.png");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 75% 35%, rgba(18, 214, 255, 0.24), transparent 28%),
    radial-gradient(circle at 12% 86%, rgba(34, 148, 255, 0.22), transparent 26%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.62fr);
  gap: 56px;
  align-items: end;
  max-width: 1320px;
  min-height: calc(100svh - 214px);
  margin: 0 auto;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  color: var(--text);
  font-size: 5rem;
  line-height: 1.03;
  font-weight: 950;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 3rem;
  line-height: 1.04;
  font-weight: 930;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  line-height: 1.16;
}

.hero-lede,
.section-heading p:not(.eyebrow),
.pay-copy p,
.contact-layout p {
  color: var(--muted);
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 54px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible,
.select-package:hover,
.select-package:focus-visible,
.payment-options button:hover,
.payment-options button:focus-visible,
.payment-options button.is-selected {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--blue), #24c8ff);
  color: #fff;
  box-shadow: 0 18px 46px rgba(34, 148, 255, 0.28);
}

.button.secondary {
  border-color: rgba(111, 183, 255, 0.45);
  background: rgba(4, 11, 20, 0.58);
  color: var(--text);
}

.button.full {
  width: 100%;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero-points article {
  min-height: 104px;
  padding-top: 18px;
  border-top: 1px solid rgba(111, 183, 255, 0.46);
}

.hero-points strong,
.hero-points span {
  display: block;
}

.hero-points strong {
  margin-bottom: 7px;
  color: #fff;
  font-size: 1.08rem;
}

.hero-points span {
  color: var(--muted);
}

.depth-board {
  justify-self: end;
  width: min(100%, 430px);
  padding: 24px;
  border: 1px solid rgba(111, 183, 255, 0.36);
  border-radius: 8px;
  background: rgba(3, 8, 18, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.board-title {
  margin-bottom: 18px;
  color: #dfeaff;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.depth-board ul,
.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.depth-board li {
  position: relative;
  min-height: 36px;
  padding-left: 28px;
  color: #d5e1f1;
  font-weight: 780;
}

.depth-board li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--cyan);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(18, 214, 255, 0.7);
}

.section {
  padding: 96px 5%;
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 1), rgba(8, 17, 29, 0.96)),
    var(--bg);
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(8, 17, 29, 0.96), rgba(5, 8, 15, 1));
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.service-grid,
.pricing-grid,
.portfolio-grid,
.testimonial-grid {
  display: grid;
  gap: 20px;
}

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

.cost-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.cost-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid rgba(111, 183, 255, 0.22);
  border-radius: 12px;
  background: rgba(7, 18, 32, 0.76);
}

.cost-card h3 {
  margin: 0 0 12px;
}

.cost-card .cost {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 1.45rem;
  font-weight: 950;
}

.cost-card > p:not(.cost) {
  flex: 1;
}

.cost-card .button {
  width: 100%;
  margin-top: 14px;
}

.service-card,
.price-card,
.project-card,
.quote-card,
.checkout-panel,
.contact-form {
  border: 1px solid rgba(111, 183, 255, 0.22);
  border-radius: 8px;
  background: rgba(8, 18, 32, 0.72);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.service-card {
  min-height: 236px;
  padding: 24px;
}

.service-mark,
.package-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.service-card p,
.project-copy p,
.quote-card figcaption,
.price-note {
  color: var(--muted);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 454px;
  padding: 26px;
}

.price-card.featured {
  border-color: rgba(18, 214, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(18, 214, 255, 0.12), rgba(168, 131, 255, 0.08)),
    rgba(8, 18, 32, 0.82);
}

.price-card.is-active {
  box-shadow: 0 0 0 2px rgba(18, 214, 255, 0.52), 0 28px 80px rgba(0, 0, 0, 0.34);
}

.pricing-table-wrap {
  margin-top: 26px;
  overflow-x: auto;
  border: 1px solid rgba(111, 183, 255, 0.22);
  border-radius: 8px;
  background: rgba(8, 18, 32, 0.72);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.pricing-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: #e8f2ff;
}

.pricing-table caption {
  padding: 22px 24px 8px;
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 950;
  text-align: left;
  text-transform: uppercase;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(111, 183, 255, 0.16);
  text-align: left;
}

.pricing-table th {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.pricing-table td:nth-child(2),
.pricing-table td:nth-child(3),
.pricing-table th:nth-child(2),
.pricing-table th:nth-child(3) {
  text-align: right;
  white-space: nowrap;
}

.pricing-table tbody tr:hover {
  background: rgba(18, 214, 255, 0.07);
}

.pricing-table tbody tr.is-selected {
  background: rgba(18, 214, 255, 0.1);
}

.pricing-table .service-detail-row,
.pricing-table .service-detail-row:hover {
  background: transparent;
}

.pricing-table .service-detail-cell {
  padding: 0 24px 24px;
  border-bottom: 1px solid rgba(111, 183, 255, 0.16);
}

.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.service-detail-trigger {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #e8f2ff;
  font-weight: 850;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.service-detail-trigger::after {
  content: "View";
  flex: 0 0 auto;
  margin-left: 12px;
  padding: 4px 8px;
  border: 1px solid rgba(18, 214, 255, 0.34);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.service-detail-trigger:hover,
.service-detail-trigger:focus-visible {
  color: var(--cyan);
  outline: none;
}

.pricing-table tbody tr.is-selected .service-detail-trigger {
  color: var(--cyan);
}

.service-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.7fr);
  gap: 26px;
  margin-top: 0;
  padding: 26px;
  border: 1px solid rgba(18, 214, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 214, 255, 0.1), rgba(168, 131, 255, 0.07)),
    rgba(8, 18, 32, 0.82);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.service-detail-card h3 {
  margin-bottom: 12px;
  font-size: 1.75rem;
}

.service-detail-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-detail-card ul {
  display: grid;
  gap: 10px;
  align-self: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-card li {
  position: relative;
  padding-left: 24px;
  color: #dce8f7;
  font-weight: 780;
}

.service-detail-card li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--mint);
}

.price {
  margin-bottom: 8px;
  font-size: 2.45rem;
  font-weight: 950;
}

.price-card li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 24px;
  color: #d7e3f3;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--mint);
}

.select-package {
  width: 100%;
  min-height: 50px;
  margin-top: auto;
  border: 1px solid rgba(111, 183, 255, 0.4);
  border-radius: 8px;
  background: rgba(4, 11, 20, 0.84);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.price-card.is-active .select-package {
  border-color: transparent;
  background: var(--blue);
}

.pay-section {
  background:
    radial-gradient(circle at 16% 26%, rgba(56, 216, 138, 0.14), transparent 34%),
    radial-gradient(circle at 78% 22%, rgba(168, 131, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(5, 8, 15, 1), rgba(8, 17, 29, 0.98));
}

.pay-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 44px;
  align-items: center;
}

.method-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.method-row span {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(111, 183, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #dce9f8;
  font-weight: 800;
}

.checkout-panel {
  overflow: hidden;
  background: #f7f9fc;
  color: #111827;
}

.checkout-top {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 16px 22px;
  border-bottom: 1px solid #dce3ec;
  background: #fff;
}

.lock-dot {
  width: 15px;
  height: 15px;
  border: 3px solid #111827;
  border-radius: 5px;
}

.checkout-body {
  padding: 24px;
}

.summary-label {
  margin-bottom: 16px;
  color: #5d6a7b;
  font-weight: 900;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid #dce3ec;
  color: #111827;
}

.summary-line.muted {
  color: #5d6a7b;
}

.payment-options {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.payment-options button {
  min-height: 50px;
  border: 1px solid #dce3ec;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  font-weight: 840;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease;
}

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

.project-card {
  overflow: hidden;
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid rgba(111, 183, 255, 0.22);
}

.project-copy {
  padding: 24px;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--cyan);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--violet);
}

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

.quote-card {
  margin: 0;
  min-height: 238px;
  padding: 24px;
}

.quote-card blockquote {
  margin: 0 0 22px;
  color: #f6fbff;
  font-size: 1.16rem;
  font-weight: 760;
}

.contact-section {
  background:
    linear-gradient(120deg, rgba(34, 148, 255, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(8, 17, 29, 0.98), rgba(5, 7, 13, 1));
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-services {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(111, 183, 255, 0.22);
  border-radius: 10px;
  background: rgba(7, 18, 32, 0.65);
}

.contact-services h3 {
  margin: 0 0 12px;
  color: var(--cyan);
}

.contact-services ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-services li::before {
  content: "✓";
  margin-right: 9px;
  color: #38e39b;
  font-weight: 900;
}

.contact-lines a {
  color: var(--cyan);
  font-weight: 900;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #d9e6f6;
  font-weight: 850;
}

.service-choices {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(111, 183, 255, 0.26);
  border-radius: 8px;
}

.service-choices legend {
  padding: 0 6px;
  color: #d9e6f6;
  font-weight: 850;
}

.service-choices p {
  margin: 0 0 12px;
  font-size: 0.9rem;
}

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

.choice-grid label {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 9px;
  padding: 10px;
  border-radius: 7px;
  background: rgba(18, 214, 255, 0.05);
  font-size: 0.92rem;
  cursor: pointer;
}

.choice-grid input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: var(--cyan);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(111, 183, 255, 0.26);
  border-radius: 8px;
  background: rgba(2, 7, 15, 0.86);
  color: var(--text);
  outline: none;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 136px;
  padding: 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(18, 214, 255, 0.12);
}

.site-footer {
  padding: 42px 5%;
  border-top: 1px solid rgba(111, 183, 255, 0.18);
  background: #03070e;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  color: var(--muted);
}

.footer-inner img {
  width: 124px;
  height: 96px;
  object-fit: contain;
  padding: 0;
  border-radius: 8px;
  background: transparent;
  filter: drop-shadow(0 16px 28px rgba(18, 214, 255, 0.14));
}

.footer-inner p {
  margin: 0;
}

.footer-note {
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: #22d463;
  color: #04210f;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(34, 212, 99, 0.28);
}

.music-control {
  position: fixed;
  z-index: 20;
  bottom: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(111, 183, 255, 0.35);
  border-radius: 999px;
  background: rgba(3, 9, 18, 0.9);
  color: #eef7ff;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.music-control:hover,
.music-control:focus-visible,
.music-control[aria-pressed="true"] {
  border-color: var(--cyan);
  color: var(--cyan);
}

.music-icon {
  font-size: 1.2rem;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 76px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 5%;
    display: none;
    width: min(320px, 90vw);
    padding: 12px;
    border: 1px solid rgba(111, 183, 255, 0.28);
    border-radius: 8px;
    background: rgba(5, 11, 21, 0.97);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 6px;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero {
    padding-top: 122px;
  }

  .hero-inner,
  .pay-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .depth-board {
    justify-self: start;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .service-grid,
  .cost-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .brand img {
    width: 96px;
    height: 74px;
  }

  .hero {
    padding: 112px 6% 64px;
  }

  .hero::before {
    background-position: 62% center;
  }

  h1 {
    font-size: 2.62rem;
    line-height: 1.03;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-lede,
  .section-heading p:not(.eyebrow),
  .pay-copy p,
  .contact-layout p {
    font-size: 1.02rem;
  }

  .hero-actions {
    margin-bottom: 36px;
  }

  .button {
    width: 100%;
  }

  .hero-points,
  .service-grid,
  .cost-grid,
  .pricing-grid,
  .portfolio-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .depth-board {
    width: 100%;
    padding: 20px;
  }

  .section {
    padding: 72px 6%;
  }

  .price-card {
    min-height: 0;
  }

  .pricing-table {
    display: block;
    min-width: 0;
  }

  .pricing-table caption,
  .pricing-table thead,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table td {
    display: block;
    width: 100%;
  }

  .pricing-table thead {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 8px 10px;
    font-size: 0.86rem;
    vertical-align: top;
  }

  .pricing-table tbody tr:not(.service-detail-row) {
    padding: 14px 0;
    border-bottom: 1px solid rgba(111, 183, 255, 0.16);
  }

  .pricing-table tbody tr:not(.service-detail-row) td {
    border-bottom: 0;
  }

  .pricing-table tbody tr.is-selected {
    border-bottom-color: transparent;
  }

  .pricing-table td:nth-child(2),
  .pricing-table td:nth-child(3) {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.82rem;
    text-align: left;
    white-space: normal;
  }

  .pricing-table td:nth-child(2)::before,
  .pricing-table td:nth-child(3)::before {
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 950;
    text-transform: uppercase;
  }

  .pricing-table td:nth-child(2)::before {
    content: "Starting";
  }

  .pricing-table td:nth-child(3)::before {
    content: "Professional";
  }

  .pricing-table .service-detail-cell {
    padding: 0 10px 18px;
    border-bottom: 1px solid rgba(111, 183, 255, 0.16);
  }

  .pricing-table .service-detail-cell::before {
    display: none;
    content: "";
  }

  .service-detail-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .service-detail-card h3 {
    font-size: 1.55rem;
  }

  .service-detail-trigger {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    min-height: 0;
    font-size: 0.92rem;
  }

  .service-detail-trigger::after {
    margin-left: 0;
  }

  .pay-layout,
  .contact-layout {
    gap: 30px;
  }

  .summary-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-note {
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
