:root {
  --pt-ink: #102039;
  --pt-ink-soft: #536178;
  --pt-navy: #0b1830;
  --pt-navy-2: #112a4b;
  --pt-blue: #0877c9;
  --pt-blue-bright: #16a3ed;
  --pt-cyan: #49d7df;
  --pt-mint: #baf7e9;
  --pt-amber: #ffc65a;
  --pt-paper: #ffffff;
  --pt-mist: #f3f7fa;
  --pt-line: #dbe5ed;
  --pt-success: #159a87;
  --pt-radius-sm: 14px;
  --pt-radius: 24px;
  --pt-radius-lg: 34px;
  --pt-shadow-sm: 0 10px 30px rgba(16, 31, 53, 0.08);
  --pt-shadow: 0 24px 70px rgba(8, 25, 49, 0.15);
  --pt-shell: 1220px;
  --pt-font: Inter, Aptos, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body.posttrans-page {
  margin: 0;
  color: var(--pt-ink);
  background: var(--pt-mist);
  font-family: var(--pt-font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.posttrans-page img {
  max-width: 100%;
}

.posttrans-page a {
  color: inherit;
  text-decoration: none;
}

.posttrans-page button,
.posttrans-page a {
  -webkit-tap-highlight-color: transparent;
}

.posttrans-page button,
.posttrans-page input,
.posttrans-page select,
.posttrans-page textarea {
  font: inherit;
}

.posttrans-page :focus-visible {
  outline: 3px solid var(--pt-amber);
  outline-offset: 4px;
}

.pt-shell {
  width: min(calc(100% - 48px), var(--pt-shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 9px;
  color: var(--pt-navy) !important;
  background: var(--pt-amber);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(219, 229, 237, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-logo {
  display: block;
  width: clamp(205px, 22vw, 286px);
  height: auto;
}

.site-nav,
.nav-list {
  display: flex;
  align-items: center;
}

.site-nav {
  justify-content: flex-end;
  gap: 18px;
}

.nav-list {
  margin: 0;
  padding: 0;
  gap: 3px;
  list-style: none;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-radius: 11px;
  color: #344258;
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-list > li > a:hover,
.nav-list > li > a[aria-current="page"] {
  color: var(--pt-blue);
  background: #eef7fd;
}

.sub-menu {
  position: absolute;
  top: calc(100% + 11px);
  left: 0;
  width: 330px;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--pt-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: var(--pt-shadow);
  list-style: none;
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.sub-menu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 12px;
  content: "";
}

.has-menu:hover .sub-menu,
.has-menu:focus-within .sub-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.sub-menu a {
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  border-radius: 10px;
  line-height: 1.35;
}

.sub-menu a:hover {
  color: var(--pt-blue);
  background: var(--pt-mist);
}

.sub-menu strong {
  font-size: 14px;
}

.sub-menu span {
  margin-top: 2px;
  color: #708096;
  font-size: 12px;
}

.sub-menu-compact {
  width: 245px;
}

.menu-toggle {
  display: none;
  border: 0;
  color: var(--pt-ink);
  background: none;
  cursor: pointer;
}

.menu-toggle-lines {
  display: grid;
  width: 24px;
  gap: 4px;
}

.menu-toggle-lines i {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.menu-toggle-label {
  font-size: 13px;
  font-weight: 800;
}

.pt-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.pt-button:hover {
  transform: translateY(-2px);
}

.pt-button-small {
  min-height: 44px;
  padding-inline: 17px;
}

.pt-button-primary {
  color: var(--pt-navy) !important;
  background: var(--pt-amber);
  box-shadow: 0 14px 30px rgba(255, 198, 90, 0.2);
}

.pt-button-primary:hover {
  background: #ffd078;
}

.pt-button-secondary {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.pt-button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.14);
}

.pt-button-blue {
  color: #fff;
  background: var(--pt-blue);
  box-shadow: 0 12px 28px rgba(8, 119, 201, 0.2);
}

.pt-button-blue:hover {
  background: #066bb5;
}

.pt-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(73, 215, 223, 0.22), transparent 26%),
    linear-gradient(135deg, var(--pt-navy) 0%, var(--pt-navy-2) 62%, #084c78 100%);
}

.pt-hero::after {
  position: absolute;
  width: 460px;
  height: 460px;
  right: -180px;
  bottom: -300px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.pt-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 460px;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: 70px;
  padding-block: 70px;
}

.breadcrumb {
  display: flex;
  margin: 0 0 24px;
  padding: 0;
  gap: 9px;
  color: #b9cce0;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.breadcrumb a:hover {
  color: #fff;
}

.pt-eyebrow {
  display: flex;
  align-items: center;
  margin: 0 0 16px;
  gap: 10px;
  color: var(--pt-cyan);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pt-eyebrow::before {
  display: block;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.pt-hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 0.99;
  letter-spacing: -0.045em;
}

.pt-hero-copy > p:not(.pt-eyebrow) {
  max-width: 710px;
  margin: 25px 0 0;
  color: #cfdeea;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

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

.pt-hero-art {
  position: relative;
  display: grid;
  min-height: 310px;
  place-items: center;
}

.excel-window {
  position: relative;
  width: min(100%, 350px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.27);
  transform: rotate(2.5deg);
  backdrop-filter: blur(10px);
}

.excel-toolbar {
  display: flex;
  height: 48px;
  align-items: center;
  padding: 0 16px;
  gap: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.excel-toolbar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pt-cyan);
  opacity: 0.8;
}

.excel-grid {
  display: grid;
  grid-template-columns: 52px repeat(4, 1fr);
  padding: 14px;
}

.excel-grid i {
  height: 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.excel-grid i:nth-child(7),
.excel-grid i:nth-child(13),
.excel-grid i:nth-child(19) {
  background: rgba(73, 215, 223, 0.25);
}

.excel-badge {
  position: absolute;
  right: 0;
  bottom: 10px;
  display: grid;
  width: 96px;
  height: 96px;
  border: 7px solid rgba(255, 255, 255, 0.94);
  border-radius: 24px;
  color: #fff;
  background: var(--pt-success);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  font-size: 35px;
  font-weight: 900;
  place-items: center;
  transform: rotate(-5deg);
}

.pt-main-wrap {
  padding-block: 58px 80px;
}

.pt-hero-inline {
  border-radius: var(--pt-radius);
  box-shadow: var(--pt-shadow);
}

.pt-hero-inline h1 {
  font-size: clamp(36px, 4.5vw, 58px) !important;
  line-height: 1.02;
}

.pt-hero-inline .pt-shell {
  width: 100%;
}

.pt-hero-inline .pt-hero-grid {
  min-height: 420px;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.65fr);
  gap: clamp(28px, 4vw, 48px);
  padding: clamp(36px, 5vw, 54px);
}

.pt-hero-inline + .content-card {
  margin-top: 24px;
}

.pt-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  align-items: start;
  gap: 34px;
}

.pt-sidebar {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 18px;
}

.side-card {
  overflow: hidden;
  border: 1px solid var(--pt-line);
  border-radius: var(--pt-radius);
  background: var(--pt-paper);
  box-shadow: var(--pt-shadow-sm);
}

.side-card h2 {
  margin: 0;
  padding: 20px 21px 17px;
  color: #fff;
  background: linear-gradient(135deg, var(--pt-navy-2), #145885);
  font-size: 18px;
  line-height: 1.25;
}

.side-card ul {
  margin: 0;
  padding: 10px;
  list-style: none;
}

.side-card li + li {
  margin-top: 2px;
}

.side-card a {
  position: relative;
  display: block;
  padding: 9px 11px 9px 23px;
  border-radius: 10px;
  color: #46556c;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  transition: color 0.18s ease, background 0.18s ease;
}

.side-card a::before {
  position: absolute;
  top: 15px;
  left: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a9b9c8;
  content: "";
}

.side-card a:hover,
.side-card a[aria-current="page"] {
  color: var(--pt-blue);
  background: #edf7fd;
}

.side-card a[aria-current="page"]::before {
  background: var(--pt-blue);
}

.pt-content {
  min-width: 0;
}

.content-card,
.training-callout,
.quote-card,
.contact-card {
  border: 1px solid var(--pt-line);
  border-radius: var(--pt-radius);
  background: var(--pt-paper);
  box-shadow: var(--pt-shadow-sm);
}

.content-card {
  padding: clamp(25px, 4vw, 42px);
}

.content-card + .content-card,
.content-card + .training-callout,
.training-callout + .content-card,
.pt-minor-grid + .contact-card {
  margin-top: 24px;
}

.section-kicker {
  margin: 0 0 9px;
  color: var(--pt-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pt-content h2,
.pt-content h3 {
  color: var(--pt-ink);
  letter-spacing: -0.025em;
}

.pt-content h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 39px);
  line-height: 1.12;
}

.pt-content h3 {
  margin: 0 0 9px;
  font-size: 21px;
  line-height: 1.25;
}

.pt-content p {
  margin: 0;
  color: var(--pt-ink-soft);
}

.pt-content p + p {
  margin-top: 14px;
}

.pt-content a:not(.pt-button):not(.use-card) {
  color: #066fb9;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(6, 111, 185, 0.28);
  text-underline-offset: 3px;
}

.lead {
  max-width: 820px;
  color: #34445c !important;
  font-size: 19px;
  line-height: 1.65;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
  gap: 14px;
}

.benefit-item {
  position: relative;
  padding: 19px 18px 19px 48px;
  border-radius: var(--pt-radius-sm);
  background: var(--pt-mist);
  color: #34445c;
  font-size: 14px;
  font-weight: 680;
}

.benefit-item::before {
  position: absolute;
  top: 20px;
  left: 22px;
  width: 7px;
  height: 12px;
  border-right: 2px solid var(--pt-success);
  border-bottom: 2px solid var(--pt-success);
  content: "";
  transform: rotate(45deg);
}

.training-callout {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  align-items: center;
  padding: 27px 30px;
  gap: 22px;
  color: #fff;
  border-color: transparent;
  background: linear-gradient(130deg, #0c6a82, #0877c9);
}

.training-icon {
  display: grid;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  color: var(--pt-navy);
  background: var(--pt-cyan);
  font-size: 22px;
  font-weight: 900;
  place-items: center;
}

.training-callout h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 25px;
}

.training-callout p {
  color: #d8edf4;
  font-size: 14px;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
  gap: 15px;
}

.use-card {
  display: block;
  padding: 22px;
  border: 1px solid var(--pt-line);
  border-radius: 17px;
  background: #fbfdff;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.use-card:hover {
  border-color: #9dcdea;
  box-shadow: 0 13px 26px rgba(16, 31, 53, 0.08);
  transform: translateY(-2px);
}

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

.use-card p {
  font-size: 14px;
}

.use-card span {
  display: inline-block;
  margin-top: 13px;
  color: var(--pt-blue);
  font-size: 13px;
  font-weight: 850;
}

.version-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
  gap: 18px;
}

.version-card {
  padding: 27px;
  border: 1px solid var(--pt-line);
  border-radius: 20px;
  background: #fbfdff;
}

.version-card-professional {
  border-color: #87c8e9;
  background: linear-gradient(180deg, #edf9ff, #fff 32%);
}

.version-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #066fb9;
  background: #e6f5fd;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: #495870;
  font-size: 14px;
}

.feature-list li + li {
  margin-top: 11px;
}

.feature-list li::before {
  position: absolute;
  top: 5px;
  left: 3px;
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--pt-success);
  border-bottom: 2px solid var(--pt-success);
  content: "";
  transform: rotate(45deg);
}

.pt-minor-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  margin-top: 24px;
  gap: 24px;
}

.pt-minor-grid > :only-child {
  grid-column: 1 / -1;
}

.quote-card,
.contact-card {
  padding: 30px;
}

.quote-card blockquote {
  margin: 0;
  color: #263952;
  font-size: 18px;
  line-height: 1.6;
}

.quote-card cite {
  display: block;
  margin-top: 17px;
  color: var(--pt-ink-soft);
  font-size: 13px;
  font-style: normal;
  font-weight: 750;
}


.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(120deg, #fff, #edf8fd);
}

.contact-card h2 {
  margin-bottom: 7px;
  font-size: 28px;
}

.pricing-table-wrap {
  margin-top: 25px;
  overflow-x: auto;
  border: 1px solid var(--pt-line);
  border-radius: 18px;
}

.pricing-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #fff;
}

.pricing-table th,
.pricing-table td {
  padding: 17px 19px;
  border-bottom: 1px solid var(--pt-line);
  text-align: left;
  vertical-align: top;
}

.pricing-table thead th {
  color: #fff;
  background: var(--pt-navy-2);
  font-size: 14px;
}

.pricing-table thead th:not(:first-child),
.pricing-table td:not(:first-child) {
  text-align: center;
}

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

.pricing-table tbody tr:nth-child(even) {
  background: #f7fafc;
}

.pricing-table tbody th {
  color: #34445c;
  font-size: 14px;
}

.price {
  color: var(--pt-ink);
  font-size: 18px;
  font-weight: 850;
}

.price-note {
  margin-top: 18px !important;
  padding: 14px 17px;
  border-radius: 12px;
  color: #46556c !important;
  background: #edf6fb;
  font-size: 14px;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 25px;
  gap: 18px;
}

.example-card {
  overflow: hidden;
  border: 1px solid var(--pt-line);
  border-radius: 18px;
}

.example-card h3 {
  margin: 0;
  padding: 17px 20px;
  color: #fff;
  background: var(--pt-navy-2);
  font-size: 18px;
}

.example-card dl {
  margin: 0;
}

.example-card div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  padding: 14px 18px;
  gap: 12px;
  border-bottom: 1px solid var(--pt-line);
}

.example-card div:last-child {
  border-bottom: 0;
}

.example-card dt {
  color: var(--pt-ink);
  font-size: 13px;
  font-weight: 850;
}

.example-card dd {
  margin: 0;
  color: var(--pt-ink-soft);
  font-size: 13px;
}

.startup-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-top: 28px;
  padding: 25px;
  gap: 25px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(130deg, #0f6c7e, #0877c9);
}

.startup-panel h3,
.startup-panel p {
  color: #fff;
}

.startup-panel p {
  margin-top: 5px;
  color: #d9edf4;
  font-size: 14px;
}

.startup-price {
  min-width: 140px;
  text-align: center;
}

.startup-price strong {
  display: block;
  font-size: 32px;
  line-height: 1.1;
}

.startup-price span {
  display: block;
  margin-top: 4px;
  color: #d9edf4;
  font-size: 12px;
  font-weight: 750;
}

.licence-list {
  margin: 18px 0 0;
  padding-left: 21px;
  color: var(--pt-ink-soft);
}

.licence-list li + li {
  margin-top: 9px;
}

.site-footer {
  color: #c7d3df;
  background: #081426;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  padding-block: 58px 44px;
  gap: 40px;
}

.brand-logo-footer {
  width: 235px;
  filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-contact p {
  max-width: 280px;
  margin: 16px 0 0;
  color: #9eb0c2;
  font-size: 14px;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 14px;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a {
  font-size: 14px;
  transition: color 0.18s ease;
}

.site-footer a:hover {
  color: var(--pt-cyan);
}

.footer-base {
  display: flex;
  padding-block: 19px 27px;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8396aa;
  font-size: 12px;
}

@media (max-width: 1060px) {
  .site-nav {
    gap: 8px;
  }

  .nav-list > li > a {
    padding-inline: 9px;
    font-size: 13px;
  }

  .pt-hero-grid {
    gap: 38px;
  }

  .pt-layout {
    grid-template-columns: 245px minmax(0, 1fr);
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 74px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 74px);
    overflow-y: auto;
    padding: 17px 24px 23px;
    border-top: 1px solid var(--pt-line);
    border-bottom: 1px solid var(--pt-line);
    background: #fff;
    box-shadow: var(--pt-shadow-sm);
  }

  .menu-open .site-nav {
    display: block;
  }

  .nav-list {
    display: block;
  }

  .nav-list > li > a {
    padding-inline: 11px;
  }

  .sub-menu {
    position: static;
    display: block;
    width: 100%;
    margin: 2px 0 8px;
    padding: 3px 0 3px 15px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .pt-button-small {
    width: 100%;
    margin-top: 8px;
  }

  .pt-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 56px;
  }

  .pt-hero-art {
    display: none;
  }

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

  .pt-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .training-callout {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .training-callout .pt-button {
    grid-column: 1 / -1;
  }

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

@media (max-width: 680px) {
  .pt-shell {
    width: min(calc(100% - 32px), var(--pt-shell));
  }

  .brand-logo {
    width: 205px;
  }

  .menu-toggle-label {
    display: none;
  }

  .pt-hero h1 {
    font-size: clamp(39px, 12vw, 56px);
  }

  .pt-hero-actions,
  .pt-hero-actions .pt-button {
    width: 100%;
  }

  .pt-main-wrap {
    padding-block: 34px 55px;
  }

  .pt-sidebar,
  .benefit-grid,
  .use-grid,
  .version-grid,
  .pt-minor-grid,
  .example-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .content-card,
  .quote-card,
  .contact-card {
    padding: 24px 20px;
  }

  .training-callout {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .training-icon {
    width: 58px;
    height: 58px;
    border-radius: 17px;
  }

  .startup-panel,
  .contact-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-card {
    display: grid;
  }

  .startup-price {
    text-align: left;
  }

  .contact-card .pt-button {
    width: 100%;
  }

  .footer-base {
    flex-direction: column;
  }
}

@media print {
  .site-header,
  .pt-sidebar,
  .pt-hero-actions,
  .contact-card,
  .site-footer {
    display: none !important;
  }

  body.posttrans-page {
    background: #fff;
  }

  .pt-hero {
    color: #000;
    background: #fff;
  }

  .pt-hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-block: 25px;
  }

  .pt-hero-copy > p:not(.pt-eyebrow),
  .pt-eyebrow,
  .breadcrumb {
    color: #333;
  }

  .pt-hero-art {
    display: none;
  }

  .pt-layout {
    display: block;
  }

  .content-card,
  .training-callout,
  .quote-card {
    break-inside: avoid;
    box-shadow: none;
  }
}

