:root {
  --bg: #0a0f1a;
  --card: #0f172a;
  --ink: #e6ebf5;
  --muted: #9ca3b5;
  --accent: #8b5cf6;
  --accent-2: #38bdf8;
  --accent-hot: #f97316;
  --accent-soft: #22d3ee;
  --border: #1f2937;
  --success: #22c55e;
  --danger: #ef4444;
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.28);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Soehne", "Space Grotesk", "Helvetica Neue", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  --pattern-size: 280px;
  background-color: #000;
  background-image: none;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.modal-open {
  overflow: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 50%);
  mix-blend-mode: soft-light;
  opacity: 0.35;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 18;
  padding: 0;
  background: #05070d;
  backdrop-filter: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 14px 18px;
  margin: 0;
  width: 100%;
  background: #05070d;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.25);
  position: relative;
  isolation: isolate; 
}

.site-header.is-hidden {
  transform: translateY(-120%);
  opacity: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 46px;
  width: auto;
}

.brand-logo-square {
  display: block;
}

.brand-logo-long {
  display: none;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links {
  margin-left: auto;
}

.nav-links a {
  font-weight: 600;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 8px;
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-drawer a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.nav-actions {
  margin-left: 12px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #05070d;
  font-weight: 700;
  text-decoration: none;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 10px 22px rgba(56, 189, 248, 0.16);
  animation: navGlow 3.4s ease-in-out infinite alternate;
}

.nav-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 14px 28px rgba(56, 189, 248, 0.24);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.7;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 6px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
}

.nav-toggle:hover span,
.nav-toggle:active span,
.site-header.is-open .nav-toggle span {
  background: var(--accent-2);
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

@keyframes navGlow {
  0% {
    box-shadow: 0 8px 18px rgba(56, 189, 248, 0.16);
  }
  50% {
    box-shadow: 0 14px 28px rgba(56, 189, 248, 0.24);
  }
  100% {
    box-shadow: 0 18px 36px rgba(56, 189, 248, 0.18);
  }
}

.nav-drawer {
  display: none;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  padding: 12px 18px 14px;
  width: 100%;
  max-width: none;
  background: #05070d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.nav-drawer a {
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--ink);
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-drawer .nav-cta {
  margin-top: 2px;
  text-align: center;
  width: 100%;
  justify-content: center;
  color: #05070d;
  background: #fff;
}

.nav-drawer .pill-ghost {
  text-align: center;
}

.site-header.is-open .nav-drawer {
  display: grid;
  animation: sectionIn 0.3s ease;
}

.desktop-nav {
  display: flex;
}

@media (max-width: 860px) {
  .site-header {
    padding: 0;
  }

  .nav-bar {
    padding: 8px 12px;
    gap: 10px;
  }

  .brand-mark {
    font-size: 14px;
  }

  .js .desktop-nav {
    display: none;
  }

  .js .nav-actions {
    display: none;
  }

  .js .nav-toggle {
    display: inline-flex;
  }

  .brand-mark {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-drawer {
    width: 100%;
  }

  .brand-logo-square {
    display: none;
  }

  .brand-logo-long {
    display: block;
    height: 40px;
  }

  .home-hero {
    min-height: 46vh;
    padding: 18px 18px 22px;
    margin-left: calc(-50vw + 50%);
    width: 100vw;
    align-items: flex-start;
  }

  .hero-banner {
    gap: 10px;
    align-self: flex-start;
    padding-top: 18px;
    margin-top: 8px;
  }

  .hero-kicker {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .hero-title {
    font-size: 30px;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .hero-title .title-word {
    display: block;
    margin-left: 0;
    width: 100%;
  }

  .hero-title .title-word + .title-word {
    margin-top: 0;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .about-hero {
    padding-bottom: 24px;
  }

  .home-about-grid {
    display: block;
    gap: 14px;
    justify-items: stretch;
    align-items: start;
    position: relative;
  }

  .home-about-figure {
    display: none !important;
  }

  .home-about-img {
    display: none !important;
  }

  .home-about-copy {
    width: 100%;
    max-width: none;
    padding: 0 4px;
  }

  .home-about {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.9), rgba(10, 15, 26, 0.95));
  }

  .about-hero-content {
    width: 100%;
    max-width: none;
  }

  .about-hero-grid {
    display: block;
    gap: 12px;
    justify-items: center;
    position: relative;
  }

  .about-hero-figure {
    display: none !important;
  }

  .about-hero-img {
    display: none !important;
  }
}

.pill-ghost {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent-2);
  font-weight: 700;
  box-shadow: 0 12px 20px rgba(37, 99, 235, 0.1);
}

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

a:hover {
  color: var(--accent-2);
}

.scroll-cue {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, 0.2);
  display: grid;
  place-items: center;
  margin-top: 12px;
  color: var(--accent-2);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.12);
  animation: bounce 1.6s ease-in-out infinite;
}

.scroll-cue span {
  font-size: 18px;
}
.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 12px 32px;
  position: relative;
  background: #000;
}

.home-page {
  max-width: none;
  padding: 0;
}

.home-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 60vh;
  margin: 0;
  margin-left: calc(-50vw + 50%);
  width: 100vw;
  padding: 24px 28px 36px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.25), rgba(5, 7, 13, 0.8)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("Assets/Images/ljimage1.jpg") center / cover no-repeat;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(56, 189, 248, 0.18), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.16), transparent 45%);
  opacity: 0.7;
  mix-blend-mode: screen;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.34) 12%,
    rgba(0, 0, 0, 0.12) 28%,
    rgba(0, 0, 0, 0.02) 48%,
    rgba(0, 0, 0, 0.08) 60%,
    rgba(0, 0, 0, 0.24) 76%,
    rgba(0, 0, 0, 0.52) 90%,
    rgba(0, 0, 0, 0.82) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-banner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  max-width: 640px;
}

.hero-kicker {
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(230, 235, 245, 0.82);
}

.hero-title {
  margin: 0;
  font-size: 48px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-weight: 900;
}

.hero-title .title-word {
  display: inline-block;
}

.hero-title .title-word + .title-word {
  margin-left: 6px;
}

.hero-subtitle {
  margin: 0;
  font-size: 20px;
  color: rgba(230, 235, 245, 0.9);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-cta {
  height: 46px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background: transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  height: 46px;
  box-sizing: border-box;
}

.btn-outline:hover {
  transform: translateY(-1px);
  border-color: #fff;
  color: #fff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.7), 0 0 14px rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.32), 0 10px 22px rgba(0, 0, 0, 0.35);
}

.home-about {
  width: 100vw;
  margin: 0;
  margin-left: calc(-50vw + 50%);
  padding: 26px 18px 40px;
  border-radius: 0;
  border: none;
  background: #000;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.home-about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
}

.home-about-copy {
  display: grid;
  gap: 10px;
  max-width: 880px;
}

.home-about-title {
  margin: 0;
}

.home-about-figure {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-right: 10px;
}

.home-about-img {
  width: clamp(200px, 32vw, 320px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.4));
}

.home-about::before {
  content: none;
}

.home-about::after {
  content: none;
}


.home-pricing {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 12px 18px 40px;
  box-sizing: border-box;
  position: relative;
  overflow: visible;
  background: #0b0b0d;
}

.home-pricing .pricing-banner {
  margin-bottom: 16px;
}

.home-pricing .pricing-grid {
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  padding: 20px 8vw 28px;
  margin: -12px 0;
  gap: 22px;
  scrollbar-width: none;
}

.home-pricing .pricing-grid::-webkit-scrollbar {
  display: none;
}

.home-pricing .price-card {
  scroll-snap-align: center;
  min-width: 0;
}

.home-pricing::before,
.home-pricing::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10vw;
  max-width: 140px;
  pointer-events: none;
  z-index: 2;
  display: none;
}

.home-pricing::before {
  left: 0;
  background: linear-gradient(90deg, #000000, rgba(0, 0, 0, 0));
}

.home-pricing::after {
  right: 0;
  background: linear-gradient(270deg, #000000, rgba(0, 0, 0, 0));
}

@media (min-width: 769px) {
  .home-hero {
    margin-bottom: 0;
  }

  .home-about {
    margin-bottom: 0;
    padding: 32px 26px 100px;
  }

.home-pricing {
    padding: 36px 26px 44px;
    margin-bottom: 0;
    overflow: hidden;
  }

  .home-pricing::before,
  .home-pricing::after {
    display: block;
  }
}

.about-hero {
  position: relative;
  width: 100vw;
  margin: 0 0 18px;
  margin-left: calc(-50vw + 50%);
  padding: 24px 20px;
  border-radius: 0;
  border: none;
  background: url("Assets/Images/ljimage1.jpg") center / cover no-repeat;
  box-shadow: none;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 16%,
    rgba(0, 0, 0, 0.22) 44%,
    rgba(0, 0, 0, 0.22) 56%,
    rgba(0, 0, 0, 0.6) 84%,
    rgba(0, 0, 0, 0.9) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 18px;
}

.about-hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 10px;
  max-width: 820px;
}

.about-hero-figure {
  position: relative;
  z-index: 3;
  align-self: flex-end;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-right: 14px;
}

.about-hero-img {
  width: clamp(220px, 38vw, 360px);
  max-height: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
  transform: translateY(18px);
  margin-bottom: -24px;
}

.home-about-figure::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  bottom: -8px;
  height: 180px;
  background: linear-gradient(180deg, rgba(14, 14, 16, 0) 0%, rgba(14, 14, 16, 0.9) 100%);
  pointer-events: none;
  z-index: 2;
}

.about-hero-figure::after {
  content: none;
}

.about-body {
  margin-top: 12px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 24px 20px;
  border-radius: 0;
  border: none;
  background: #0b0b0d;
  box-shadow: none;
  display: grid;
  gap: 12px;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

.about-body h2 {
  margin: 0;
}

.about-body::after {
  content: none;
}

.enquiry-hero {
  margin: 0 auto 16px;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(5, 7, 13, 0.8), rgba(5, 7, 13, 0.94));
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.enquiry-hero h1 {
  margin: 0 0 6px;
}

.enquiry-card {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.9), rgba(10, 15, 26, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
  padding: 18px;
}

.enquiry-form {
  display: grid;
  gap: 12px;
}

.enquiry-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 700;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  background: linear-gradient(120deg, #0f172a, #0a0f1a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.enquiry-form textarea {
  resize: vertical;
  min-height: 120px;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.22);
  background-position: 60% 40%;
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 8px;
}

.home-grid .card {
  height: 100%;
}

.home-process {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.process-card {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.94), rgba(10, 15, 26, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
  display: grid;
  gap: 8px;
}

.process-card h4 {
  margin: 0;
}

header.hero {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-image: linear-gradient(120deg, rgba(139, 92, 246, 0.12), rgba(56, 189, 248, 0.1)), linear-gradient(180deg, #0f172a, #0b1224);
  backdrop-filter: blur(6px);
  display: grid;
  gap: 18px;
  min-height: 420px;
}

header.hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 60%);
  top: -140px;
  right: -140px;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 20% 20%, rgba(251, 146, 60, 0.25), transparent 45%), radial-gradient(circle at 80% 0%, rgba(34, 211, 238, 0.2), transparent 48%);
  filter: blur(18px);
  z-index: 0;
}

.orb-ring {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, rgba(14, 165, 233, 0.4), rgba(251, 146, 60, 0.4), rgba(37, 99, 235, 0.4), rgba(14, 165, 233, 0.4));
  opacity: 0.65;
  filter: blur(14px);
  animation: spin 16s linear infinite;
}

.orb-ring.one {
  top: -80px;
  right: 40px;
}

.orb-ring.two {
  bottom: -120px;
  left: 10%;
  animation-duration: 22s;
}

.floating-orb {
  position: absolute;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.3), transparent 65%);
  top: -60px;
  left: -40px;
  filter: blur(2px);
  animation: float 12s ease-in-out infinite;
}

.floating-orb.two {
  width: 220px;
  height: 220px;
  bottom: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.25), transparent 65%);
  animation-duration: 16s;
}

.hero-visual {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.4)), linear-gradient(180deg, rgba(37, 99, 235, 0.18), rgba(37, 99, 235, 0));
  opacity: 0.85;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(37, 99, 235, 0.2), transparent 45%), radial-gradient(circle at 70% 60%, rgba(14, 165, 233, 0.18), transparent 48%);
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  max-width: 720px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.18), rgba(14, 165, 233, 0.16));
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.12);
}
.form-head .badge {
  margin-top: -4px;
}

.accent-ribbon {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.18), rgba(14, 165, 233, 0.16));
  color: var(--ink);
  font-weight: 700;
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 0 12px 22px rgba(37, 99, 235, 0.12);
}

h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 800;
}

p.lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  background-size: 160% 160%;
  color: #fff;
  border: none;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  white-space: normal;
  max-width: 100%;
  cursor: pointer;
  box-shadow: 0 18px 30px rgba(37, 99, 235, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, background-position 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(37, 99, 235, 0.28);
  background-position: 80% 20%;
}

.btn:active {
  transform: translateY(0);
}

.btn.pressed {
  transform: translateY(1px);
  box-shadow: 0 12px 16px rgba(37, 99, 235, 0.18);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  opacity: 0;
  transform: translateX(-120%);
}

.btn:hover::after {
  opacity: 1;
  transform: translateX(120%);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.btn.danger {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 18px 30px rgba(239, 68, 68, 0.25);
}

.btn.danger:hover {
  box-shadow: 0 22px 36px rgba(239, 68, 68, 0.3);
}

.glow-underline {
  position: relative;
}

.glow-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent-hot));
  filter: blur(6px);
  opacity: 0.35;
  pointer-events: none;
}

.texture-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.08), transparent 40%),
    radial-gradient(circle at 70% 10%, rgba(14, 165, 233, 0.08), transparent 45%),
    radial-gradient(circle at 40% 80%, rgba(251, 146, 60, 0.08), transparent 50%);
  opacity: 0.7;
  mix-blend-mode: screen;
  animation: shimmerSweep 18s ease-in-out infinite;
}

.edge-highlight {
  position: relative;
  overflow: hidden;
}

.edge-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.45), rgba(251, 146, 60, 0.35), rgba(37, 99, 235, 0.45));
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.7;
  pointer-events: none;
}

.edge-highlight::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  opacity: 0.6;
  pointer-events: none;
  filter: blur(8px);
}

.pill-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.12), rgba(14, 165, 233, 0.12));
  color: var(--ink);
  font-weight: 700;
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pill-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(37, 99, 235, 0.18);
}

.floating-stack {
  position: relative;
  display: grid;
  gap: 10px;
  perspective: 1200px;
}

.floating-layer {
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(10, 15, 26, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transform: rotateX(0deg) rotateY(0deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.floating-layer:hover {
  transform: rotateX(2deg) rotateY(-2deg) translateY(-2px);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.4);
}

.accent-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(14, 165, 233, 0), rgba(14, 165, 233, 0.5), rgba(14, 165, 233, 0));
  opacity: 0.6;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-hot);
  box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.35);
  animation: pulse 1.6s ease-in-out infinite;
}

.tilt-card {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tilt-card:hover {
  transform: translateY(-2px) rotateX(1deg) rotateY(-1deg);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.16);
}

.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(37, 99, 235, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.3;
  pointer-events: none;
}

.ribbon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.18), rgba(37, 99, 235, 0.14), rgba(251, 146, 60, 0.14));
  border: 1px solid rgba(37, 99, 235, 0.22);
  box-shadow: 0 12px 22px rgba(37, 99, 235, 0.14);
  font-weight: 700;
  color: var(--ink);
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.92), rgba(12, 17, 29, 0.96));
  color: var(--muted);
  transition: all 0.2s ease;
}

.nav-pill:hover {
  color: var(--ink);
  border-color: rgba(56, 189, 248, 0.26);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.stacked-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 40%, rgba(37, 99, 235, 0.12), transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(14, 165, 233, 0.12), transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(251, 146, 60, 0.12), transparent 50%);
  opacity: 0.6;
  filter: blur(10px);
}

.timeline-steps .timeline-step {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.timeline-steps .timeline-step:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 28px rgba(37, 99, 235, 0.14);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(37, 99, 235, 0.08));
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.icon-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.94), rgba(12, 18, 30, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.32);
}

.icon-card .badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(139, 92, 246, 0.2));
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.28);
}

.icon-card .label {
  font-weight: 700;
  color: var(--ink);
}

.icon-card .sub {
  color: var(--muted);
  font-size: 14px;
}

.btn.secondary {
  background: #0f172a;
  box-shadow: none;
}

.btn.link {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  padding: 0;
  font-weight: 600;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
  display: grid;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
  background-image: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(17, 24, 39, 0.92));
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
  border-color: rgba(249, 115, 22, 0.2);
}

.card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::after {
  opacity: 1;
}

.card .dot-grid {
  opacity: 0.22;
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

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

.timeline-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.timeline-step {
  flex: 1 1 160px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(17, 24, 39, 0.9));
  border: 1px solid rgba(139, 92, 246, 0.2);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  position: relative;
  overflow: hidden;
}

.timeline-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.timeline-step:hover::before {
  opacity: 1;
}

.timeline-step .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12);
  grid-row: span 2;
  align-self: flex-start;
}

.timeline-step .label {
  font-weight: 700;
  grid-column: 2;
}

.timeline-step .hint {
  color: var(--muted);
  font-size: 14px;
  grid-column: 2;
}

.counter-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.counter-card {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(17, 24, 39, 0.94));
  border: 1px solid rgba(37, 99, 235, 0.24);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32);
  display: grid;
  gap: 6px;
}

.counter-number {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.counter-label {
  color: var(--muted);
  font-size: 14px;
}

.marquee {
  margin-top: 26px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.95), rgba(12, 17, 29, 0.96));
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  overflow: hidden;
  position: relative;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
}

.marquee-track {
  display: flex;
  gap: 28px;
  padding: 12px 18px;
  animation: marquee 18s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.marquee-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.1);
}

.cta-band {
  margin: 38px 0;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.94), rgba(15, 23, 42, 0.96));
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  display: grid;
  gap: 10px;
  align-items: center;
}

.cta-band strong {
  font-size: 18px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-note {
  margin-top: 32px;
  color: var(--muted);
  font-size: 14px;
}

.centered {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.status-block {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
  gap: 8px;
  background-image: linear-gradient(180deg, rgba(37, 99, 235, 0.06), rgba(14, 165, 233, 0.03));
}

.status-block .icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(14, 165, 233, 0.15);
  color: var(--accent-2);
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.meta-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.meta-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  border-radius: 999px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.14), rgba(56, 189, 248, 0.12));
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.chip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent 60%);
  opacity: 0;
  transform: translateX(-80%);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.chip:hover::after {
  opacity: 1;
  transform: translateX(80%);
}

.chip .icon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.alert {
  background: rgba(239, 68, 68, 0.14);
  color: #fecdd3;
  border: 1px solid rgba(239, 68, 68, 0.28);
  border-radius: 12px;
  padding: 14px 16px;
}

.animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate.in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@keyframes drift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 30px;
  }
}

@keyframes float {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 12px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes shimmerSweep {
  0% {
    transform: translate3d(-10px, 0, 0);
    opacity: 0.4;
  }
  50% {
    transform: translate3d(10px, 0, 0);
    opacity: 0.8;
  }
  100% {
    transform: translate3d(-10px, 0, 0);
    opacity: 0.4;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.35);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(251, 146, 60, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(251, 146, 60, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0ms !important;
  }
  body {
    animation: none;
  }
  .marquee-track {
    animation: none;
  }
.texture-overlay {
  animation: none;
}
}

.pricing-banner {
  position: relative;
  padding: 22px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(30, 41, 59, 0.85));
  box-shadow: var(--shadow);
  overflow: visible;
}

.pricing-banner-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  max-width: 720px;
}

.pricing-section {
  margin-top: 24px;
}

.pricing-title {
  margin: 0;
  font-size: 38px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.pricing-includes {
  text-align: center;
  margin: 0 auto 18px;
  max-width: 820px;
}

.pricing-includes-title {
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  color: #fff;
}

.wyg-inline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 2px;
}

.wyg-card.wyg-chip {
  padding: 10px 12px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  min-height: auto;
  cursor: pointer;
}

.wyg-chip .wyg-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wyg-chip .wyg-chip-label {
  text-align: left;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.pricing-divider {
  margin: 18px auto 0;
  height: 1px;
  width: min(820px, 94%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  opacity: 0.9;
}

.back-home {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100vw;
  margin: 8px 0 6px;
  margin-left: calc(-50vw + 50%);
  padding: 0 18px;
  box-sizing: border-box;
}

.back-home-btn {
  padding: 10px 12px;
  font-size: 14px;
}

.pricing-cta-wrap {
  margin-top: 32px;
  margin-bottom: 44px;
  display: flex;
  justify-content: center;
  position: relative;
}

.pricing-cta-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -24px;
  width: 90%;
  max-width: 980px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
  border-radius: 999px;
}

.what-you-get {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: 0;
  padding: 20px 18px 40px;
  background: #0b0b0d;
  color: #fff;
  box-shadow: none;
  overflow: hidden;
}

.wyg-head {
  text-align: center;
  margin-bottom: 18px;
}

.wyg-title {
  margin: 4px 0 6px;
  font-size: 30px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wyg-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.wyg-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pricing-wyg {
  margin-top: 16px;
}

.wyg-card {
  background: linear-gradient(180deg, rgba(26, 26, 28, 0.94), rgba(14, 14, 16, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
  display: grid;
  gap: 8px;
  min-height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.wyg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.32);
  border-color: rgba(255, 255, 255, 0.14);
}

.wyg-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: transparent;
  color: #ffffff;
  box-shadow: none;
}

.wyg-card h3 {
  margin: 4px 0;
}

.wyg-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.wyg-icon-img {
  width: 26px;
  height: 26px;
  filter: invert(1) brightness(1.2);
  opacity: 0.96;
}

.wyg-mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 30;
}

.wyg-mobile-drawer.is-open {
  display: flex;
}

.wyg-drawer-card {
  background: linear-gradient(180deg, rgba(26, 26, 28, 0.96), rgba(14, 14, 16, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 18px;
  max-width: 520px;
  width: min(90vw, 520px);
  position: relative;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.5);
}

.wyg-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: #fff;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.wyg-drawer-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: transparent;
  color: #fff;
  box-shadow: none;
  margin-bottom: 10px;
}

.wyg-drawer-icon svg {
  width: 26px;
  height: 26px;
}

.wyg-drawer-card h3 {
  margin: 6px 0;
}

.wyg-drawer-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.success-stories {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 28px 18px 40px;
  background: #000000;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.success-head {
  text-align: center;
  margin-bottom: 16px;
}

.success-title {
  margin: 4px 0 0;
  font-size: 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.success-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.success-card {
  background: linear-gradient(180deg, rgba(26, 26, 30, 0.95), rgba(12, 12, 14, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px;
  display: grid;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.success-quote {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
  font-style: italic;
}

.success-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.success-initial {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.success-name {
  font-weight: 800;
  color: #fff;
}

.success-tag {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.try-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 28px 18px 40px;
  background: linear-gradient(180deg, rgba(18, 18, 20, 0.96), rgba(10, 10, 12, 0.98));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.try-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  align-items: center;
}

.try-figure {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.try-img {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.35);
}

.try-copy {
  display: grid;
  gap: 10px;
}

.try-title {
  margin: 0;
  font-size: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.try-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.try-list {
  margin: 4px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  display: grid;
  gap: 6px;
}

.try-cta-wrap {
  margin-top: 8px;
}

.home-enquiry {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 28px 18px 40px;
  background: #0b0b0d;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 12px;
}

.home-enquiry-head {
  text-align: center;
  display: grid;
  gap: 6px;
}

.home-enquiry-title {
  margin: 0;
  font-size: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-enquiry-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.home-enquiry-form {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.home-enquiry-form label {
  display: grid;
  gap: 6px;
  color: #fff;
  font-weight: 700;
}

.home-enquiry-form input,
.home-enquiry-form select,
.home-enquiry-form textarea {
  width: 100%;
  background: linear-gradient(120deg, #0f0f11, #0c0c0e);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 12px 14px;
  color: #fff;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  appearance: none;
}

.home-enquiry-form select {
  color: #fff;
}

.home-enquiry-form select option {
  background: #0f0f11;
  color: #fff;
}

.home-enquiry-form input:focus,
.home-enquiry-form select:focus,
.home-enquiry-form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.home-enquiry-note {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.6;
}

.home-enquiry-checks {
  display: grid;
  gap: 8px;
}

.home-enquiry-check {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.home-enquiry-check input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin-top: 0;
  width: 42px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  display: inline-block;
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.home-enquiry-check input::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease;
}

.home-enquiry-check input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.home-enquiry-check input:checked {
  background: #fff;
  border-color: #fff;
}

.home-enquiry-check input:checked::after {
  transform: translateX(20px);
  background: #000;
  box-shadow: none;
}

.home-enquiry-submit {
  width: 100%;
  justify-content: center;
  background: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.28),
    0 10px 22px rgba(0, 0, 0, 0.35);
}

.home-enquiry-submit:hover {
  border-color: #ffffff;
  color: #000000;
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.36),
    0 12px 26px rgba(0, 0, 0, 0.38);
}

.home-enquiry-footnote {
  margin: 4px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
}

.reviews-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 24px 18px 32px;
  background: linear-gradient(180deg, rgba(18, 18, 20, 0.96), rgba(10, 10, 12, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
  position: relative;
  overflow: hidden;
}

.reviews-head {
  text-align: center;
  margin-bottom: 14px;
}

.reviews-title {
  margin: 4px 0 0;
  font-size: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  gap: 14px;
  overflow-x: auto;
  padding: 0 8vw 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  background: linear-gradient(180deg, rgba(26, 26, 30, 0.95), rgba(12, 12, 14, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
  display: grid;
  gap: 10px;
  grid-template-rows: 1fr auto;
  scroll-snap-align: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.review-quote {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
  font-style: italic;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-initial {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.review-name {
  font-weight: 800;
  color: #fff;
}

.reviews-section::before,
.reviews-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10vw;
  max-width: 140px;
  pointer-events: none;
  z-index: 2;
}

.reviews-section::before {
  left: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

.reviews-section::after {
  right: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

@media (max-width: 768px) {
  .wyg-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
  }

  .wyg-card {
    padding: 12px;
    text-align: center;
    cursor: pointer;
  }

  .wyg-icon {
    margin: 0 auto;
  }

  .wyg-card h3 {
    display: block;
    margin: 4px 0 0;
    font-size: 14px;
    color: #fff;
    text-align: center;
  }

  .wyg-card p {
    display: none;
  }

  .home-enquiry {
    padding: 20px 14px 28px;
  }

  .home-enquiry-title {
    font-size: 24px;
  }

  .home-enquiry-form {
    gap: 10px;
  }

  .reviews-track {
    padding: 0 6vw 10px;
    grid-auto-columns: minmax(240px, 280px);
  }
}

.site-footer {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 14px 18px 14px;
  background: #050607;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
  align-items: start;
}

.footer-title {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  margin: 0 0 4px;
}

.footer-text,
.footer-address {
  color: rgba(255, 255, 255, 0.78);
  margin: 8px 0 0;
  line-height: 1.5;
}

.footer-links,
.footer-legal,
.footer-social {
  display: grid;
  gap: 4px;
}

.footer-links h4,
.footer-legal h4,
.footer-social h4 {
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
}

.footer-links a,
.footer-legal a,
.footer-social a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.footer-social-row {
  display: flex;
  gap: 10px;
}

.footer-social-row svg {
  width: 22px;
  height: 22px;
}

.footer-bottom {
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 8px;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

@media (max-width: 600px) {
  .pricing-includes-list {
    grid-template-columns: 1fr;
    gap: 6px 12px;
  }

  .pricing-cta-wrap {
    margin-top: 24px;
    margin-bottom: 36px;
  }
}

.pricing-compare {
  padding: 10px 18px;
  background: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.4),
    0 10px 22px rgba(0, 0, 0, 0.3);
  text-shadow: none;
  animation: glowPulse 2.4s ease-in-out infinite;
}

.pricing-compare:hover {
  color: #000000;
  border-color: #ffffff;
  box-shadow:
    0 0 24px rgba(255, 255, 255, 0.5),
    0 12px 26px rgba(0, 0, 0, 0.32);
  text-shadow: none;
}

@keyframes glowPulse {
  0% {
    box-shadow:
      0 0 14px rgba(255, 255, 255, 0.35),
      0 10px 20px rgba(0, 0, 0, 0.24);
  }
  50% {
    box-shadow:
      0 0 26px rgba(255, 255, 255, 0.65),
      0 12px 26px rgba(0, 0, 0, 0.28);
  }
  100% {
    box-shadow:
      0 0 14px rgba(255, 255, 255, 0.35),
      0 10px 20px rgba(0, 0, 0, 0.24);
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  align-items: stretch;
  perspective: 1400px;
}

.price-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 10px 18px 18px;
  --pc-accent: #e8e8ea;
  --pc-accent-strong: #b5b5b9;
  --pc-accent-soft: rgba(255, 255, 255, 0.12);
  --pc-border: rgba(255, 255, 255, 0.12);
  --pc-ink: #fff;
  --pc-muted: rgba(255, 255, 255, 0.78);
  border-radius: 16px;
  background: linear-gradient(135deg, #1a1b1f, #0d0e12);
  border: 1px solid var(--pc-border);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 14px 30px rgba(0, 0, 0, 0.26);
  overflow: visible;
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.3s ease, border-color 0.25s ease, filter 0.3s ease;
  transform-style: preserve-3d;
  scroll-snap-stop: always;
  color: var(--pc-ink);
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), transparent 42%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.price-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.36) 50%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.35s ease, background-position 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  mix-blend-mode: screen;
  background-size: 220% 220%;
}

.price-card:hover {
  transform: translateY(-2px) scale(1.003);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
  filter: drop-shadow(0 10px 24px rgba(255, 255, 255, 0.08));
  transform-origin: center;
}

.price-card:hover::before {
  opacity: 1;
}

.price-card:hover::after {
  opacity: 0.45;
  animation: sheen 1.1s ease-out forwards;
  transform: translate3d(0, 0, 0);
}

.price-top h3 {
  margin: 6px 0 4px;
}

.price-top p {
  margin: 0;
  color: var(--pc-muted);
}

.price-figure {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-figure .amount {
  font-size: 34px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pc-accent), var(--pc-accent-strong));
  -webkit-background-clip: text;
  color: transparent;
}

.price-figure .amount.amount-custom {
  background: none;
  color: #000;
  -webkit-text-fill-color: #000;
}

.price-figure .amount.amount-hybrid {
  background: none;
  color: #0fb46f;
  -webkit-text-fill-color: #0fb46f;
}

.price-figure .amount.amount-starter {
  background: none;
  color: #0ea5e9;
  -webkit-text-fill-color: #0ea5e9;
}

.price-figure .amount.amount-full {
  background: none;
  color: #ef4444;
  -webkit-text-fill-color: #ef4444;
}

.price-figure .unit {
  color: var(--pc-muted);
}

.price-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--pc-muted);
}

.price-points li {
  display: flex;
  gap: 8px;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--pc-ink);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid var(--pc-border);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.26);
}

.pill-popular {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  color: #fff;
  background: linear-gradient(135deg, #ff8a05, #ff2d55);
  box-shadow:
    0 0 14px rgba(255, 107, 0, 0.55),
    0 0 26px rgba(255, 45, 85, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.16);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.price-card .btn {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, #1c1c20, #0f1014);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.price-select,
.enquiry-bar-action {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 12px rgba(0, 0, 0, 0.22),
    0 10px 18px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.price-select:hover,
.enquiry-bar-action:hover {
  box-shadow:
    0 0 16px rgba(255, 255, 255, 0.18),
    0 14px 22px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

.price-select.is-selected {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 900;
  color: #fff;
}

.price-select.selected-blue {
  background: #0c86c0;
  border-color: rgba(12, 134, 192, 0.9);
  box-shadow:
    0 0 6px rgba(14, 165, 233, 0.45),
    0 0 14px rgba(14, 165, 233, 0.5),
    0 10px 20px rgba(0, 0, 0, 0.22);
}

.price-select.selected-green {
  background: #0c915c;
  border-color: rgba(12, 145, 92, 0.9);
  box-shadow:
    0 0 6px rgba(16, 185, 129, 0.45),
    0 0 14px rgba(16, 185, 129, 0.5),
    0 10px 20px rgba(0, 0, 0, 0.22);
}

.price-select.selected-red {
  background: #c92f2f;
  border-color: rgba(201, 47, 47, 0.9);
  box-shadow:
    0 0 6px rgba(239, 68, 68, 0.45),
    0 0 14px rgba(239, 68, 68, 0.5),
    0 10px 20px rgba(0, 0, 0, 0.22);
}

.price-card.highlight-hybrid {
  border-color: rgba(16, 185, 129, 0.9);
  box-shadow:
    0 0 0 3px rgba(16, 185, 129, 0.3),
    0 0 8px 3px rgba(16, 185, 129, 0.75),
    0 0 14px rgba(16, 185, 129, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.18);
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.6));
}

.price-card.highlight-hybrid:hover {
  box-shadow:
    0 0 0 2px rgba(16, 185, 129, 0.4),
    0 0 6px rgba(16, 185, 129, 0.85),
    0 2px 6px rgba(0, 0, 0, 0.12);
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.6));
}

.price-card.highlight-starter {
  border-color: rgba(14, 165, 233, 0.9);
  box-shadow:
    0 0 0 3px rgba(14, 165, 233, 0.3),
    0 0 8px 3px rgba(14, 165, 233, 0.75),
    0 0 14px rgba(14, 165, 233, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.18);
  filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.6));
}

.price-card.highlight-starter:hover {
  box-shadow:
    0 0 0 2px rgba(14, 165, 233, 0.4),
    0 0 6px rgba(14, 165, 233, 0.85),
    0 2px 6px rgba(0, 0, 0, 0.12);
  filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.6));
}

.price-card.highlight-full {
  border-color: rgba(239, 68, 68, 0.9);
  box-shadow:
    0 0 0 3px rgba(239, 68, 68, 0.3),
    0 0 8px 3px rgba(239, 68, 68, 0.75),
    0 0 14px rgba(239, 68, 68, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.18);
  filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.6));
}

.price-card.highlight-full:hover {
  box-shadow:
    0 0 0 2px rgba(239, 68, 68, 0.4),
    0 0 6px rgba(239, 68, 68, 0.85),
    0 2px 6px rgba(0, 0, 0, 0.12);
  filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.6));
}

.wyg-card.wyg-chip {
  position: relative;
}

.wyg-card.wyg-chip::after {
  content: "▾";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.wyg-card.wyg-chip:hover::after {
  opacity: 0.95;
  transform: translateY(-50%) translateX(2px);
}

@media (max-width: 768px) {
  .wyg-inline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wyg-card.wyg-chip .wyg-icon {
    display: none;
  }

  .wyg-card.wyg-chip {
    padding: 12px;
    grid-template-columns: 1fr;
  }

  .wyg-card.wyg-chip::after {
    right: 8px;
  }
}

.enquiry-bar {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%) translateY(120%);
  width: min(720px, 92vw);
  background: rgba(255, 255, 255, 0.82);
  color: #111111;
  border: 1px solid rgba(17, 17, 17, 0.16);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.16),
    0 0 18px rgba(255, 255, 255, 0.32);
  border-radius: 16px;
  padding: 12px 14px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
  backdrop-filter: blur(12px) saturate(140%);
}

.enquiry-bar.is-active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.enquiry-bar.is-hiding {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.enquiry-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.enquiry-bar-text {
  display: grid;
  gap: 4px;
}

.enquiry-bar-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #333333;
}

.enquiry-bar-package {
  font-size: 18px;
  font-weight: 800;
  color: #000;
}

.enquiry-bar-package.theme-blue {
  color: #0ea5e9;
}

.enquiry-bar-package.theme-green {
  color: #0c915c;
}

.enquiry-bar-package.theme-red {
  color: #c92f2f;
}

.enquiry-bar-action {
  min-width: 140px;
}

.price-card.accent-blue {
  --pc-accent: #111111;
  --pc-accent-strong: #444444;
  --pc-accent-soft: rgba(0, 0, 0, 0.08);
  --pc-border: #1a1a1a;
  --pc-ink: #000000;
  --pc-muted: #2b2b2b;
  background: #ffffff;
  border: 1px solid #1a1a1a;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.price-card.accent-blue .btn {
  background: linear-gradient(135deg, #1f2027, #0f1014);
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.18);
}

.price-card.accent-purple {
  --pc-accent: #1a1a1a;
  --pc-accent-strong: #3a3a3a;
  --pc-accent-soft: rgba(0, 0, 0, 0.12);
  --pc-border: #2a2a2a;
  --pc-ink: #111111;
  --pc-muted: #2f2f2f;
  background: #f2f2f2;
  border: 1px solid #2a2a2a;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.price-card.accent-purple .btn {
  background: linear-gradient(135deg, #1f2027, #0f1014);
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.price-card.accent-hot {
  --pc-accent: #111111;
  --pc-accent-strong: #2f2f2f;
  --pc-accent-soft: rgba(0, 0, 0, 0.14);
  --pc-border: #333333;
  --pc-ink: #0d0d0d;
  --pc-muted: #242424;
  background: #cfcfcf;
  border: 1px solid #333333;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.price-card.accent-hot .btn {
  background: linear-gradient(135deg, #1f2027, #0f1014);
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(0, 0, 0, 0.18);
}

.price-card.accent-green {
  --pc-accent: #1dd37a;
  --pc-accent-strong: #18b86a;
  --pc-accent-soft: rgba(29, 211, 122, 0.22);
  --pc-border: rgba(255, 255, 255, 0.18);
  --pc-ink: #ffffff;
  --pc-muted: rgba(255, 255, 255, 0.82);
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.price-card.accent-green .btn {
  background: linear-gradient(135deg, #1b1f27, #0d0f14);
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.price-card.accent-amber {
  --pc-accent: #f5d067;
  --pc-accent-strong: #d3a93c;
  --pc-accent-soft: rgba(245, 208, 103, 0.3);
  --pc-border: rgba(245, 208, 103, 0.32);
  --pc-ink: #ffffff;
  --pc-muted: rgba(255, 255, 255, 0.82);
  background: #000000;
  border: 1px solid rgba(245, 208, 103, 0.32);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(245, 208, 103, 0.26);
}

.price-card.accent-amber .btn {
  background: linear-gradient(135deg, #0f1116, #0a0c11);
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(245, 208, 103, 0.36);
}

.price-card.accent-premium {
  --pc-accent: #a8b3c7;
  --pc-accent-strong: #8fa3c1;
  --pc-accent-soft: rgba(168, 179, 199, 0.32);
  --pc-border: rgba(168, 179, 199, 0.32);
  --pc-ink: #ffffff;
  --pc-muted: rgba(255, 255, 255, 0.82);
  background: #0d0d0d;
  border: 1px solid rgba(168, 179, 199, 0.32);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(168, 179, 199, 0.28);
}

.price-card.accent-premium .btn {
  background: linear-gradient(135deg, #10121a, #0a0b11);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(168, 179, 199, 0.4);
}

.price-card.accent-premium .price-figure .amount {
  background: none;
  color: #ff3b3b;
}

.price-card {
  backface-visibility: hidden;
}

@keyframes sheen {
  0% {
    background-position: -180% 50%;
  }
  100% {
    background-position: 180% 50%;
  }
}

@media (max-width: 640px) {
  header.hero {
    padding: 32px;
  }

  h1 {
    font-size: 32px;
  }

  .pricing-grid {
    grid-auto-flow: column;
    grid-auto-columns: 80vw;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 10vw 16px;
    gap: 12px;
    perspective: 1200px;
    scrollbar-width: none;
    scroll-padding: 0 10vw;
  }

  .pricing-grid::-webkit-scrollbar {
    display: none;
  }

  .price-card {
    scroll-snap-align: center;
    min-width: 0;
    margin: 0 auto;
    padding: 16px 14px 14px;
    width: 100%;
  }
}
