:root {
  --app-primary: #0097b2;
  --app-primary-strong: #007f95;
  --app-accent: #7ed957;
  --app-accent-strong: #58b934;
  --app-page: #f5fbfc;
  --app-canvas: #ffffff;
  --app-surface: #ffffff;
  --app-surface-soft: #f8fafc;
  --app-surface-hover: #edf9f6;
  --app-panel-surface: rgba(255, 255, 255, 0.86);
  --app-border: #d7e8ec;
  --app-text: #102a43;
  --app-muted: #526d7a;
  --app-footer: #063b45;
  --app-footer-text: #eef2f7;
  --app-shadow: 0 18px 50px rgba(6, 59, 69, 0.14);
  --app-floating-shadow: 0 26px 80px rgba(6, 59, 69, 0.22);
  --app-radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main[id],
section[id] {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  min-width: 350px;
  background: var(--app-canvas);
  color: var(--app-text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--app-border);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--app-text);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--app-radius);
  background: var(--app-primary);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 151, 178, 0.22);
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 24px);
  color: var(--app-muted);
  font-size: 14px;
  font-weight: 800;
}

.top-nav a {
  text-decoration: none;
}

.top-nav a:hover {
  color: var(--app-primary-strong);
}

.hero {
  position: relative;
  min-height: calc(86svh - 72px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(56px, 10vw, 120px) clamp(18px, 4vw, 56px);
  background: #eaf7f8;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0));
  z-index: -1;
}

.hero-content {
  width: min(680px, 100%);
  position: relative;
  z-index: 2;
  padding-top: 18px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--app-primary-strong);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 640px;
  color: var(--app-text);
  font-size: clamp(52px, 10vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  margin: 24px 0 0;
  max-width: 600px;
  color: #26485a;
  font-size: clamp(18px, 2.3vw, 25px);
  line-height: 1.38;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--app-radius);
  padding: 0 18px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--app-primary), var(--app-accent));
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(0, 151, 178, 0.22);
}

.button-secondary {
  border: 1px solid color-mix(in srgb, var(--app-primary) 34%, var(--app-border));
  background: rgba(255, 255, 255, 0.9);
  color: var(--app-primary-strong);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.screen {
  position: absolute;
  border: 1px solid rgba(215, 232, 236, 0.95);
  border-radius: var(--app-radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--app-floating-shadow);
}

.screen-main {
  width: min(860px, 58vw);
  aspect-ratio: 1.58;
  right: clamp(-260px, -6vw, -90px);
  top: 15%;
  padding: 14px;
  transform: rotate(-2deg);
}

.screen-side {
  width: min(300px, 24vw);
  aspect-ratio: 0.78;
  right: min(18vw, 260px);
  bottom: 6%;
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px;
  transform: rotate(3deg);
}

.screen-side span {
  min-height: 72px;
  border-radius: var(--app-radius);
  background: var(--app-surface-soft);
  border: 1px solid var(--app-border);
}

.screen-side span:nth-child(1) {
  background: color-mix(in srgb, var(--app-primary) 14%, var(--app-surface));
}

.screen-side span:nth-child(2) {
  background: color-mix(in srgb, var(--app-accent) 16%, var(--app-surface));
}

.screen-toolbar {
  height: 32px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.screen-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--app-border);
}

.screen-layout {
  height: calc(100% - 32px);
  display: grid;
  grid-template-columns: 140px 1fr 240px;
  gap: 12px;
}

.screen-rail,
.screen-panel {
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius);
  background: var(--app-panel-surface);
}

.screen-rail {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 12px;
}

.screen-rail span {
  height: 34px;
  border-radius: var(--app-radius);
  background: var(--app-surface-soft);
}

.screen-rail span:nth-child(2) {
  background: color-mix(in srgb, var(--app-primary) 18%, var(--app-surface));
}

.screen-panel {
  padding: 14px;
}

.panel-title {
  width: 52%;
  height: 18px;
  border-radius: 999px;
  background: var(--app-primary);
}

.panel-title.short {
  width: 42%;
  background: var(--app-accent-strong);
}

.study-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.study-grid span {
  aspect-ratio: 1.15;
  border-radius: var(--app-radius);
  background:
    linear-gradient(135deg, rgba(0, 151, 178, 0.12), rgba(126, 217, 87, 0.16)),
    #eef4f6;
  border: 1px solid var(--app-border);
}

.schedule-lines {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.schedule-lines span {
  height: 46px;
  border-radius: var(--app-radius);
  border: 1px solid var(--app-border);
  background: var(--app-surface-soft);
}

.schedule-lines span:nth-child(2) {
  background: color-mix(in srgb, var(--app-primary) 13%, var(--app-surface));
}

.schedule-lines span:nth-child(3) {
  background: color-mix(in srgb, var(--app-accent) 16%, var(--app-surface));
}

.section {
  padding: clamp(54px, 8vw, 96px) 0;
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 28px;
}

.section h2 {
  margin: 0;
  color: var(--app-text);
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section h3 {
  margin: 0;
  color: var(--app-text);
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: 0;
}

.section p {
  color: var(--app-muted);
  line-height: 1.62;
}

.intro-section {
  padding-top: 42px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.intro-grid p:last-child {
  margin: 7px 0 0;
  font-size: 18px;
}

.tools-section {
  background: var(--app-page);
}

.tools-layout {
  display: grid;
  gap: 28px;
}

.tools-feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.tools-feature-list li {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 14px 16px 14px 42px;
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius);
  background: var(--app-surface);
  color: #244455;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 10px 28px rgba(6, 59, 69, 0.08);
}

.tools-feature-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--app-accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--app-accent) 18%, transparent);
  transform: translateY(-50%);
}

.tools-carousel {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--app-primary) color-mix(in srgb, var(--app-primary) 12%, transparent);
  padding: 4px 0 16px;
}

.tools-card-track {
  width: max-content;
  display: flex;
  gap: 16px;
}

.tools-card {
  width: clamp(230px, 26vw, 320px);
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius);
  background: var(--app-surface);
  color: var(--app-text);
  padding: 0;
  text-align: left;
  box-shadow: var(--app-shadow);
  cursor: pointer;
  scroll-snap-align: start;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.tools-card:hover,
.tools-card:focus-visible {
  border-color: color-mix(in srgb, var(--app-primary) 42%, var(--app-border));
  box-shadow: var(--app-floating-shadow);
  transform: translateY(-2px);
  outline: none;
}

.tools-card-thumb {
  position: relative;
  min-height: 176px;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 151, 178, 0.12), rgba(126, 217, 87, 0.18)),
    #eef7f8;
  border-bottom: 1px solid var(--app-border);
}

.tools-card-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.tools-card-thumb img:not([hidden]) + span {
  opacity: 0;
}

.tools-card-thumb span {
  position: relative;
  z-index: 1;
  max-width: calc(100% - 32px);
  color: var(--app-primary-strong);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  overflow-wrap: anywhere;
}

.tools-card-body {
  display: grid;
  gap: 7px;
  padding: 16px;
}

.tools-card-body strong {
  color: var(--app-text);
  font-size: 18px;
  line-height: 1.16;
}

.tools-card-body span {
  color: var(--app-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.gallery-dialog {
  width: min(1560px, calc(100vw - 20px));
  height: min(900px, calc(100dvh - 20px));
  max-width: none;
  max-height: calc(100dvh - 20px);
  margin: auto;
  border: 1px solid rgba(238, 242, 247, 0.24);
  border-radius: 10px;
  padding: 0;
  background: rgba(6, 59, 69, 0.58);
  backdrop-filter: blur(22px);
  box-shadow: var(--app-floating-shadow);
  color: var(--app-footer-text);
  overflow: hidden;
}

.gallery-dialog::backdrop {
  background: rgba(5, 47, 55, 0.56);
  backdrop-filter: blur(10px);
}

.gallery-dialog-surface {
  height: 100%;
  max-height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 8px;
  padding: 10px;
  overflow: hidden;
}

.gallery-close-button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(238, 242, 247, 0.3);
  border-radius: var(--app-radius);
  background: rgba(255, 255, 255, 0.12);
  color: var(--app-footer-text);
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.gallery-close-button:hover,
.gallery-close-button:focus-visible,
.gallery-nav-button:hover,
.gallery-nav-button:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

.gallery-dialog-header {
  min-width: 0;
  padding-right: 52px;
}

.gallery-dialog-header .section-kicker,
.gallery-dialog-header h2 {
  color: var(--app-footer-text);
}

.gallery-dialog-header h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1;
}

.gallery-viewer {
  position: relative;
  min-height: 0;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.gallery-nav-button {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  min-width: 44px;
  height: 68px;
  min-height: 68px;
  border: 1px solid rgba(238, 242, 247, 0.28);
  border-radius: 10px;
  background: rgba(6, 59, 69, 0.42);
  color: var(--app-footer-text);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.gallery-nav-button[data-gallery-prev] {
  left: 10px;
}

.gallery-nav-button[data-gallery-next] {
  right: 10px;
}

.gallery-figure {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  display: grid;
  gap: 0;
  align-items: center;
  justify-items: center;
  overflow: hidden;
}

.gallery-figure img {
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border: 1px solid rgba(238, 242, 247, 0.24);
  border-radius: 10px;
  background: #eef7f8;
  box-shadow: var(--app-floating-shadow);
}

.gallery-image-fallback {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(238, 242, 247, 0.24);
  border-radius: 10px;
  background: #eef7f8;
  box-shadow: var(--app-floating-shadow);
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  color: var(--app-primary-strong);
  font-size: clamp(28px, 6vw, 64px);
  font-weight: 900;
  text-align: center;
}

.gallery-image-fallback[hidden] {
  display: none;
}

.gallery-counter {
  margin: 0;
  color: color-mix(in srgb, var(--app-footer-text) 82%, transparent);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.gallery-counter {
  justify-self: center;
}

.profile-grid article,
.flow-list li {
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius);
  background: var(--app-surface);
  box-shadow: var(--app-shadow);
}

.flow-index {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--app-radius);
  background: color-mix(in srgb, var(--app-primary) 14%, var(--app-surface));
  color: var(--app-primary-strong);
  font-weight: 900;
}

.feature-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  color: #244455;
  line-height: 1.45;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--app-accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--app-accent) 18%, transparent);
}

.flow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.flow-list li {
  padding: 22px;
}

.flow-list h3 {
  margin-top: 18px;
}

.flow-list p {
  margin-bottom: 0;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.profile-grid article {
  padding: 22px;
}

.profile-grid p {
  margin-bottom: 0;
}

.pricing-section {
  background: linear-gradient(180deg, var(--app-page), #edf9f6);
}

.pricing-service-list {
  display: grid;
  gap: 22px;
}

.pricing-service {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
  align-items: stretch;
  padding: 22px;
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius);
  background: var(--app-surface);
  box-shadow: var(--app-shadow);
}

.pricing-service-copy {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-content: start;
  align-items: start;
}

.pricing-service h3,
.pricing-service p,
.pricing-plan-card h4,
.pricing-plan-card dl,
.pricing-plan-card dd {
  margin: 0;
}

.pricing-service p {
  color: var(--app-muted);
  line-height: 1.45;
  margin-top: 10px;
}

.pricing-plan-scroller {
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--app-primary) color-mix(in srgb, var(--app-primary) 12%, transparent);
  padding: 2px 2px 14px;
}

.pricing-plan-track {
  width: max-content;
  display: flex;
  gap: 14px;
}

.pricing-plan-card {
  width: clamp(220px, 23vw, 290px);
  min-height: 178px;
  flex: 0 0 auto;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--app-border) 78%, transparent);
  border-radius: var(--app-radius);
  background: var(--app-surface-soft);
  box-shadow: 0 12px 30px rgba(6, 59, 69, 0.08);
  scroll-snap-align: start;
}

.pricing-plan-card h4 {
  color: var(--app-text);
  font-size: 18px;
  line-height: 1.18;
}

.pricing-plan-card dl {
  display: grid;
  align-content: end;
  gap: 10px;
}

.pricing-plan-card dl div {
  display: grid;
  grid-template-columns: minmax(70px, auto) minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
}

.pricing-plan-card dt {
  color: var(--app-primary-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-plan-card dd {
  color: var(--app-text);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.15;
  text-align: right;
}

.pricing-extra {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 16px;
  margin-top: 22px;
  margin-bottom: 22px;
}

.pricing-note {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--app-border) 78%, transparent);
  border-radius: var(--app-radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(6, 59, 69, 0.08);
}

.pricing-note h3,
.pricing-note p,
.pricing-note ul {
  margin: 0;
}

.pricing-note h3 {
  color: var(--app-text);
  font-size: 18px;
  line-height: 1.2;
}

.pricing-note p,
.pricing-note li {
  color: var(--app-muted);
  line-height: 1.45;
}

.pricing-note ul {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.pricing-note li {
  position: relative;
  padding-left: 22px;
}

.pricing-note li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--app-accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--app-accent) 18%, transparent);
}

#pricing-disclaimer-title{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-section {
  background: var(--app-footer);
  color: var(--app-footer-text);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: start;
  gap: 18px;
  align-items: start;
}

.contact-section .section-kicker {
  margin: 0;
  color: var(--app-footer-text);
}

.contact-fields {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(118px, 1fr);
  gap: 14px;
}

.contact-field {
  min-height: 118px;
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-content: stretch;
  align-items: start;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(238, 242, 247, 0.22);
  border-radius: var(--app-radius);
  background: rgba(255, 255, 255, 0.08);
}

.contact-field span {
  color: color-mix(in srgb, var(--app-footer-text) 70%, transparent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-field strong {
  min-width: 0;
  color: var(--app-footer-text);
  font-size: 18px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-field a {
  color: inherit;
}

.site-footer {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: #052f37;
  color: var(--app-footer-text);
}

.site-footer p {
  margin: 0;
  color: color-mix(in srgb, var(--app-footer-text) 80%, transparent);
  font-weight: 800;
}

.site-footer p:first-child {
  color: var(--app-footer-text);
  font-size: 24px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .top-nav {
    display: none;
  }

  .hero {
    min-height: 78svh;
  }

  .screen-main {
    width: 760px;
    right: -430px;
    opacity: 0.62;
  }

  .screen-side {
    display: none;
  }

  .intro-grid,
  .tools-feature-list {
    grid-template-columns: 1fr;
  }

  .flow-list,
  .profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-service {
    grid-template-columns: 1fr;
  }

  .pricing-extra {
    grid-template-columns: 1fr;
  }

  .gallery-viewer {
    display: grid;
  }

  .gallery-figure {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-nav-button {
    width: 42px;
    min-width: 42px;
  }
}

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

  .hero {
    min-height: 76svh;
    padding-top: 42px;
    padding-bottom: 72px;
  }

  .hero h1 {
    font-size: clamp(46px, 18vw, 78px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .screen-main {
    width: 680px;
    right: -520px;
    top: 18%;
    opacity: 0.42;
  }

  .flow-list,
  .profile-grid,
  .contact-fields,
  .tools-feature-list {
    grid-template-columns: 1fr;
  }

  .pricing-service {
    padding: 18px;
  }

  .pricing-service-copy {
    grid-template-columns: 1fr;
  }

  .pricing-plan-card {
    width: min(76vw, 290px);
  }

  .tools-card {
    width: min(82vw, 310px);
  }

  .gallery-dialog {
    width: calc(100vw - 20px);
    height: calc(100dvh - 20px);
    max-height: calc(100dvh - 20px);
  }

  .gallery-dialog-surface {
    max-height: calc(100dvh - 20px);
    padding: 10px;
  }

  .gallery-dialog-header {
    padding-right: 50px;
  }

  .gallery-nav-button {
    width: 36px;
    min-width: 36px;
    height: 56px;
    min-height: 56px;
    font-size: 24px;
  }

  .gallery-nav-button[data-gallery-prev] {
    left: 6px;
  }

  .gallery-nav-button[data-gallery-next] {
    right: 6px;
  }

}
