:root {
  --paper: #f9fbfd;
  --paper-strong: #ffffff;
  --ink: #1a3b50;
  --ink-soft: #315a71;
  --muted: #607484;
  --line: #dbe6ee;
  --line-soft: rgba(164, 188, 204, 0.32);
  --brand-blue: #005ca2;
  --brand-navy: #1f256d;
  --blue: #5eb9f2;
  --blue-soft: #dff3ff;
  --peach: #ffd7c8;
  --mint: #def8ee;
  --lime: #e9f7cc;
  --shadow: 0 24px 60px rgba(26, 59, 80, 0.12);
  --small-shadow: 0 12px 30px rgba(26, 59, 80, 0.1);
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(249, 251, 253, 0) 0%, var(--paper) 42%),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

[id] {
  scroll-margin-top: 118px;
}

.site-header {
  left: 0;
  padding: 26px 40px 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}

.nav-shell {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--container);
  min-height: 68px;
  padding: 0;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled .nav-shell {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(219, 230, 238, 0.92);
  border-radius: 8px;
  box-shadow: var(--small-shadow);
  padding: 10px 14px 10px 20px;
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  height: auto;
  width: 154px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 34px;
  justify-content: center;
}

.desktop-nav a,
.mobile-nav a {
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition: color 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--blue);
}

.nav-cta,
.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  min-height: 46px;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.nav-cta {
  background: var(--ink);
  box-shadow: 0 18px 28px rgba(26, 59, 80, 0.2);
  color: #ffffff;
  padding: 0 22px;
}

.nav-cta:hover,
.button-dark:hover {
  background: #244f68;
  transform: translateY(-2px);
}

.menu-button {
  align-items: center;
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  display: none;
  height: 46px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 46px;
}

.menu-button span {
  background: #ffffff;
  border-radius: 999px;
  height: 2px;
  position: absolute;
  transition: transform 180ms ease;
  width: 20px;
}

.menu-button span:first-child {
  transform: translateY(-5px);
}

.menu-button span:last-child {
  transform: translateY(5px);
}

body.is-menu-open .menu-button span:first-child {
  transform: rotate(45deg);
}

body.is-menu-open .menu-button span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--small-shadow);
  display: none;
  flex-direction: column;
  gap: 18px;
  margin: 10px auto 0;
  max-width: var(--container);
  padding: 20px;
}

.hero {
  min-height: 1000px;
  overflow: hidden;
  padding: 138px 40px 0;
  position: relative;
}

.hero::before {
  background:
    radial-gradient(circle at 28% 52%, rgba(94, 185, 242, 0.5), rgba(94, 185, 242, 0) 36%),
    radial-gradient(circle at 72% 49%, rgba(255, 215, 200, 0.75), rgba(255, 215, 200, 0) 37%),
    radial-gradient(circle at 50% 20%, rgba(222, 248, 238, 0.7), rgba(222, 248, 238, 0) 35%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(164, 188, 204, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(164, 188, 204, 0.18) 1px, transparent 1px);
  background-size: 120px 120px;
  inset: 0 0 auto 0;
  height: 720px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
  pointer-events: none;
  position: absolute;
}

.hero-inner {
  margin: 0 auto;
  max-width: 820px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.eyebrow {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.feature-copy h2,
.final-cta h2 {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
  margin: 0;
}

.hero h1 {
  font-size: 76px;
  line-height: 0.96;
}

.hero h1 span,
.section-heading h2 span,
.final-cta h2 span {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.hero-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 22px auto 0;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
}

.button {
  border: 1px solid transparent;
  font-size: 16px;
  padding: 0 22px;
}

.button-dark {
  background: var(--ink);
  box-shadow: 0 18px 32px rgba(26, 59, 80, 0.18);
  color: #ffffff;
}

.button-light {
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(219, 230, 238, 0.9);
  color: var(--ink);
}

.button-light:hover {
  background: #ffffff;
  box-shadow: var(--small-shadow);
  transform: translateY(-2px);
}

.hero-media {
  border-radius: 8px 8px 0 0;
  box-shadow: var(--shadow);
  margin: 88px auto 0;
  max-width: var(--container);
  overflow: hidden;
  position: relative;
  transform: none;
  z-index: 1;
}

.hero-media img {
  aspect-ratio: 2 / 1;
  height: auto;
  object-fit: cover;
  object-position: center 50%;
  width: 100%;
}

.product-preview {
  isolation: isolate;
}

.product-preview::after {
  content: none;
}

.preview-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(219, 230, 238, 0.95);
  border-radius: 8px;
  bottom: 30px;
  box-shadow: var(--small-shadow);
  color: var(--ink);
  display: grid;
  gap: 6px;
  left: 30px;
  max-width: min(360px, calc(100% - 60px));
  padding: 18px;
  position: absolute;
  text-align: left;
  z-index: 2;
}

.preview-card span,
.preview-card small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.preview-card strong {
  font-size: 22px;
  line-height: 1.15;
}

.trusted,
.section,
.final-cta,
.site-footer {
  margin: 0 auto;
  max-width: var(--container);
  padding-left: 40px;
  padding-right: 40px;
}

.trusted {
  padding-bottom: 118px;
  padding-top: 76px;
  text-align: center;
}

.trusted p {
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 38px;
}

.logo-row {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.logo-row span {
  color: rgba(26, 59, 80, 0.34);
  font-size: 28px;
  font-weight: 800;
}

.proof-row span {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(219, 230, 238, 0.9);
  border-radius: 8px;
  color: rgba(26, 59, 80, 0.58);
  font-size: 17px;
  padding: 18px 14px;
}

.section {
  padding-bottom: 128px;
}

.section-heading {
  margin: 0 auto 52px;
  max-width: 820px;
  text-align: center;
}

.section-heading h2 {
  font-size: 56px;
  line-height: 1.05;
}

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

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

.service-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(219, 230, 238, 0.95);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(26, 59, 80, 0.06);
  min-height: 260px;
  padding: 28px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: rgba(94, 185, 242, 0.55);
  box-shadow: var(--small-shadow);
  transform: translateY(-4px);
}

.service-icon {
  align-items: center;
  background: var(--blue-soft);
  border: 1px solid rgba(94, 185, 242, 0.3);
  border-radius: 8px;
  color: var(--ink);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  height: 44px;
  justify-content: center;
  margin-bottom: 38px;
  width: 52px;
}

.service-card h3,
.process-grid h3,
.article-card h3,
.feature-copy h3 {
  color: var(--ink);
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0;
}

.service-card p,
.process-grid p,
.feature-copy p,
.article-card p,
.final-cta p,
.site-footer p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.service-card p {
  margin: 14px 0 28px;
}

.service-card a,
.article-card a {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  gap: 8px;
}

.system-feature {
  align-items: center;
  display: grid;
  gap: 76px;
  grid-template-columns: 1.1fr 0.9fr;
}

.visual-stack {
  background:
    linear-gradient(145deg, rgba(223, 243, 255, 0.84), rgba(255, 255, 255, 0.7)),
    var(--paper-strong);
  border: 1px solid rgba(219, 230, 238, 0.9);
  border-radius: 8px;
  min-height: 650px;
  overflow: hidden;
  padding: 70px;
  position: relative;
}

.mock-panel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(219, 230, 238, 0.95);
  border-radius: 8px;
  box-shadow: var(--small-shadow);
  color: var(--ink);
  position: relative;
  z-index: 2;
}

.panel-main {
  margin: 0 auto;
  max-width: 410px;
  padding: 30px;
}

.panel-topline,
.payment-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.panel-topline span,
.payment-row span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.panel-topline strong {
  font-size: 34px;
}

.chart-lines {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.chart-lines span {
  background: linear-gradient(90deg, var(--blue), rgba(94, 185, 242, 0.14));
  border-radius: 999px;
  height: 10px;
}

.chart-lines span:nth-child(2) {
  width: 78%;
}

.chart-lines span:nth-child(3) {
  width: 58%;
}

.chart-lines span:nth-child(4) {
  width: 88%;
}

.payment-row {
  background: rgba(249, 251, 253, 0.92);
  border: 1px solid rgba(219, 230, 238, 0.95);
  border-radius: 8px;
  margin-top: 12px;
  padding: 16px;
}

.payment-row.is-active {
  background: var(--ink);
  color: #ffffff;
}

.payment-row.is-active span {
  color: rgba(255, 255, 255, 0.78);
}

.floating-image {
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(26, 59, 80, 0.16);
  height: 260px;
  object-fit: cover;
  position: absolute;
  width: 220px;
}

.image-a {
  bottom: 52px;
  left: 54px;
}

.image-b {
  right: 42px;
  top: 72px;
}

.feature-copy h2 {
  font-size: 48px;
  line-height: 1.08;
}

.feature-copy > p {
  font-size: 18px;
  margin: 24px 0 36px;
}

.check-list {
  display: grid;
  gap: 24px;
}

.check-list > div {
  align-items: flex-start;
  display: flex;
  gap: 16px;
}

.check-list span {
  align-items: center;
  background: var(--blue);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 800;
  height: 24px;
  justify-content: center;
  margin-top: 3px;
  width: 24px;
}

.check-list h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.check-list p {
  margin: 0;
}

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

.process-grid article {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.process-grid span {
  color: var(--blue);
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 26px;
}

.metrics-band {
  background: var(--ink);
  border-radius: 8px;
  color: #ffffff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 56px;
  overflow: hidden;
}

.metrics-band div {
  background:
    linear-gradient(135deg, rgba(94, 185, 242, 0.12), rgba(255, 215, 200, 0.08)),
    var(--ink);
  padding: 34px;
}

.metrics-band strong {
  display: block;
  font-size: 44px;
  line-height: 1;
  margin-bottom: 10px;
}

.metrics-band span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.5;
}

.long-flow {
  row-gap: 48px;
}

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

.article-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(219, 230, 238, 0.95);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(26, 59, 80, 0.06);
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.article-card:hover {
  box-shadow: var(--small-shadow);
  transform: translateY(-4px);
}

.article-card img {
  aspect-ratio: 390 / 249;
  object-fit: cover;
  width: 100%;
}

.article-card div {
  padding: 24px;
}

.article-card p {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.article-card h3 {
  margin-bottom: 24px;
}

.template-card ul {
  color: var(--muted);
  display: grid;
  gap: 10px;
  line-height: 1.55;
  margin: 0;
  padding-left: 18px;
}

.template-card h3 {
  margin-bottom: 16px;
}

.kit-stack,
.dashboard-mock {
  background:
    linear-gradient(145deg, rgba(222, 248, 238, 0.76), rgba(255, 255, 255, 0.72)),
    var(--paper-strong);
}

.kit-panel {
  max-width: 460px;
}

.kit-upload-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.upload-row {
  background: rgba(249, 251, 253, 0.92);
  border: 1px solid rgba(219, 230, 238, 0.95);
  border-radius: 8px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
}

.upload-row span,
.upload-row small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.upload-row strong {
  font-size: 17px;
}

.upload-row.is-done {
  border-color: rgba(70, 172, 130, 0.42);
  background: rgba(222, 248, 238, 0.72);
}

.upload-row.is-active {
  border-color: rgba(94, 185, 242, 0.55);
  background: rgba(223, 243, 255, 0.82);
}

.dashboard-section {
  grid-template-columns: 0.9fr 1.1fr;
}

.dashboard-panel {
  margin: 24px auto;
  max-width: 520px;
  padding: 30px;
}

.status-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.status-pill-row span {
  background: var(--blue-soft);
  border: 1px solid rgba(94, 185, 242, 0.28);
  border-radius: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 12px;
}

.dashboard-actions {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.dashboard-actions button {
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  cursor: default;
  font: inherit;
  font-weight: 800;
  min-height: 46px;
  padding: 0 16px;
  text-align: left;
}

.booking-mini-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-mini-list div {
  background: rgba(249, 251, 253, 0.92);
  border: 1px solid rgba(219, 230, 238, 0.95);
  border-radius: 8px;
  padding: 18px;
}

.booking-mini-list span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.booking-mini-list strong {
  font-size: 20px;
}

.pricing-card.is-featured {
  background:
    linear-gradient(160deg, rgba(223, 243, 255, 0.9), rgba(255, 255, 255, 0.86)),
    #ffffff;
  border-color: rgba(94, 185, 242, 0.48);
}

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

.kanban-grid article {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(219, 230, 238, 0.95);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(26, 59, 80, 0.06);
  min-height: 225px;
  padding: 28px;
}

.kanban-grid span {
  color: var(--blue);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.kanban-grid h3 {
  color: var(--ink);
  font-size: 22px;
  margin: 0 0 14px;
}

.kanban-grid p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin: 0 auto;
  max-width: 860px;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(219, 230, 238, 0.95);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(26, 59, 80, 0.04);
  padding: 20px 22px;
}

.faq-list summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}

.faq-list p {
  color: var(--muted);
  line-height: 1.65;
  margin: 14px 0 0;
}

.final-cta {
  padding-bottom: 88px;
}

.final-cta-inner {
  background:
    radial-gradient(circle at 18% 20%, rgba(94, 185, 242, 0.38), rgba(94, 185, 242, 0) 32%),
    radial-gradient(circle at 82% 72%, rgba(255, 215, 200, 0.76), rgba(255, 215, 200, 0) 34%),
    rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(219, 230, 238, 0.95);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 78px 40px;
  position: relative;
  text-align: center;
}

.final-cta-inner::before {
  background-image:
    linear-gradient(rgba(164, 188, 204, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(164, 188, 204, 0.16) 1px, transparent 1px);
  background-size: 96px 96px;
  content: "";
  inset: 0;
  position: absolute;
}

.final-cta-inner > * {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: 56px;
  line-height: 1.05;
  margin: 0 auto;
  max-width: 760px;
}

.final-cta p:not(.eyebrow) {
  font-size: 18px;
  margin: 22px auto 32px;
  max-width: 650px;
}

.site-footer {
  align-items: flex-start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  justify-content: space-between;
  padding-bottom: 36px;
  padding-top: 34px;
}

.site-footer .brand-logo {
  width: 178px;
}

.footer-company {
  display: grid;
  gap: 7px;
  max-width: 700px;
}

.site-footer p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.site-footer p strong {
  color: var(--ink);
}

.footer-links {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: flex-end;
  max-width: 360px;
}

.site-footer a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero h1 {
    font-size: 62px;
  }

  .service-grid,
  .feature-grid,
  .article-grid,
  .process-grid,
  .kanban-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-feature {
    grid-template-columns: 1fr;
  }

  .visual-stack {
    min-height: 560px;
  }
}

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

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  body.is-menu-open .mobile-nav {
    display: flex;
  }

  .site-header.is-scrolled .nav-shell,
  .nav-shell {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(219, 230, 238, 0.92);
    border-radius: 8px;
    box-shadow: var(--small-shadow);
    padding: 10px 12px;
  }

  .hero {
    min-height: 850px;
    padding: 128px 18px 0;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 1.02;
  }

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

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

  .hero-media {
    margin-top: 54px;
    transform: none;
  }

  .hero-media img {
    aspect-ratio: 4 / 3;
  }

  .trusted,
  .section,
  .final-cta,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .logo-row,
  .service-grid,
  .feature-grid,
  .article-grid,
  .process-grid,
  .metrics-band,
  .kanban-grid {
    grid-template-columns: 1fr;
  }

  .logo-row span {
    font-size: 24px;
  }

  .section-heading h2,
  .feature-copy h2,
  .final-cta h2 {
    font-size: 40px;
  }

  .visual-stack {
    min-height: 620px;
    padding: 34px 22px;
  }

  .panel-main {
    padding: 24px;
  }

  .floating-image {
    height: 205px;
    width: 170px;
  }

  .image-a {
    bottom: 34px;
    left: 22px;
  }

  .image-b {
    right: 22px;
    top: 306px;
  }

  .preview-card {
    bottom: 18px;
    left: 18px;
    max-width: calc(100% - 36px);
    padding: 16px;
  }

  .dashboard-panel {
    margin: 0 auto;
    padding: 24px;
  }

  .booking-mini-list {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-content: flex-start;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    width: 132px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .button {
    width: 100%;
  }

  .section-heading h2,
  .feature-copy h2,
  .final-cta h2 {
    font-size: 34px;
  }

  .service-card,
  .article-card div,
  .metrics-band div {
    padding: 22px;
  }

  .visual-stack {
    min-height: 560px;
  }

  .floating-image {
    opacity: 0.82;
  }

  .lang-switch {
    display: none;
  }

  .lang-switch--mobile {
    display: inline-flex;
  }

  .trust-points {
    flex-direction: column;
    align-items: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   i18n & Bilingual UI additions
   ========================================== */

/* Skip link — hidden until focused */
.skip-link {
  background: var(--ink);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  left: 8px;
  padding: 10px 18px;
  position: fixed;
  top: -100px;
  z-index: 100;
  border-radius: 0 0 8px 8px;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 0;
}

/* Language switcher — segmented control */
.lang-switch {
  align-items: center;
  display: inline-flex;
  gap: 0;
  border: 1px solid rgba(219, 230, 238, 0.95);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.lang-btn {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  min-height: 44px;
  min-width: 44px;
  padding: 8px 14px;
  transition: background 180ms ease, color 180ms ease;
}

.lang-btn:hover {
  background: rgba(223, 243, 255, 0.5);
  color: var(--ink);
}

.lang-btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}

.lang-btn[aria-pressed="true"] {
  background: var(--blue-soft);
  color: var(--ink);
}

.lang-switch--mobile {
  margin-top: 8px;
  align-self: flex-start;
}

@media (min-width: 821px) {
  .lang-switch--mobile {
    display: none;
  }
}

/* Hero min-height reduction (compact) */
@media (min-width: 821px) {
  .hero {
    min-height: 780px;
  }
}

/* Trust micro-points below hero CTAs */
.trust-points {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 22px;
}

.trust-points span {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(219, 230, 238, 0.85);
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
}

/* Demo gallery — multi-industry, multi-device */
.demo-gallery {
  padding-bottom: 100px;
}

.gallery-subheading {
  color: var(--muted);
  font-size: 17px;
  margin: 10px 0 0;
}

.gallery-disclosure {
  color: var(--muted);
  font-weight: 600;
  margin: 10px auto 0;
  max-width: 780px;
}

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

.gallery-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(219, 230, 238, 0.95);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(26, 59, 80, 0.06);
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.gallery-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.gallery-image {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.gallery-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.gallery-card--desktop .gallery-image img {
  aspect-ratio: 16 / 10;
}

.gallery-caption {
  padding: 20px 24px 24px;
}

.gallery-industry {
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.gallery-card h3 {
  font-size: 19px;
  margin: 0 0 6px;
}

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

/* Disclosure badge on gallery cards */
.disclosure-badge {
  background: rgba(26, 59, 80, 0.82);
  border-radius: 8px 0 0 0;
  bottom: 0;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
}

/* Disclosure note (inline text) */
.disclosure-note {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}

.disclosure-note--panel {
  font-size: 11px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Process phases — 3 horizontal steps */
.process-phases {
  align-items: flex-start;
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 76px;
}

.process-phase {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(219, 230, 238, 0.95);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(26, 59, 80, 0.06);
  flex: 1;
  max-width: 320px;
  padding: 28px;
  text-align: center;
}

.phase-number {
  color: var(--blue);
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}

.process-phase h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.process-phase p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.process-phase-arrow {
  align-self: center;
  color: var(--blue);
  font-size: 24px;
  padding-top: 0;
}

/* Pro package recommended badge */
.badge-recommended {
  background: var(--blue-soft);
  border: 1px solid rgba(94, 185, 242, 0.35);
  border-radius: 8px;
  color: var(--ink);
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  padding: 6px 14px;
  text-transform: uppercase;
}

/* Package disclaimer */
.package-disclaimer {
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
  margin: 24px auto 0;
  max-width: 600px;
  text-align: center;
}

/* Pricing intro text */
.pricing-intro {
  color: var(--muted);
  font-size: 15px;
  margin: 12px auto 0;
  max-width: 540px;
  text-align: center;
}

/* Price display */
.pricing-price {
  align-items: baseline;
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-amount {
  color: var(--ink);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.pricing-period {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

/* Feature list in pricing cards */
.pricing-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.pricing-features li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  padding: 4px 0 4px 20px;
  position: relative;
}

.pricing-features li::before {
  content: '\2713';
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  left: 0;
  position: absolute;
}

/* Pro Max anchor badge */
.badge-anchor {
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  color: var(--muted);
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  padding: 6px 14px;
  text-transform: uppercase;
}

/* Service icon — now with inline SVG */
.service-icon svg {
  display: block;
}

/* Apptio-inspired 4 × 2 feature rhythm, adapted to Vi-Tech content. */
.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

@media (max-width: 680px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

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

  .nav-shell .brand-logo {
    width: 112px;
  }

  .nav-shell .lang-btn {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .service-card,
  .article-card,
  .gallery-card,
  .nav-cta,
  .button {
    transition: none;
  }

  .skip-link {
    transition: none;
  }
}

/* Responsive for gallery */
@media (max-width: 1080px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .process-phases {
    flex-direction: column;
    align-items: stretch;
  }

  .process-phase {
    max-width: none;
    text-align: left;
  }

  .process-phase-arrow {
    display: none;
  }
}

/* ===========================================
   Planned services section
   =========================================== */

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

.planned-card {
  position: relative;
  padding-top: 52px;
}

.planned-badge {
  background: var(--brand-navy);
  border-radius: 6px;
  color: #ffffff;
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  text-transform: uppercase;
  position: absolute;
  top: 20px;
  left: 20px;
}

.planned-disclosure {
  color: var(--brand-navy);
  font-weight: 700;
}

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

@media (max-width: 680px) {
  .planned-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   Gallery — 3:2 aspect ratio for composite images
   =========================================== */

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

.gallery-image img {
  aspect-ratio: 3 / 2;
}

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

@media (max-width: 680px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   Attribution section
   =========================================== */

.attribution-section {
  border-top: 1px solid var(--line);
  margin-top: 48px;
  padding-top: 32px;
}

.attribution-section h3 {
  color: var(--ink);
  font-size: 16px;
  margin: 0 0 10px;
}

.attribution-section p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 16px;
}

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

.attribution-list li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.attribution-list li::before {
  content: '·';
  color: var(--blue);
  font-weight: 800;
  left: 0;
  position: absolute;
}

.attribution-section .attribution-licence {
  margin: 16px 0 0;
}

.attribution-section a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

/* ===========================================
   Badge readability at 320px
   =========================================== */

@media (max-width: 360px) {
  .planned-badge {
    font-size: 10px;
    padding: 4px 10px;
  }

  .disclosure-badge {
    font-size: 10px;
    padding: 5px 10px;
  }

  .planned-card {
    padding-top: 48px;
  }
}
