:root {
  --bg: #f8fafc;
  --panel: #ffffff;
  --text: #111827;
  --muted: #475569;
  --line: #e5e7eb;
  --teal: #0f766e;
  --blue: #2563eb;
  --amber: #f59e0b;
  --green-soft: #dcfce7;
  --blue-soft: #dbeafe;
  --shadow: 0 18px 55px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(248, 250, 252, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  isolation: isolate;
}

.brand-mark {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: url("logo-mark-v2.svg") center / contain no-repeat;
  color: transparent;
  font-size: 0;
  filter: drop-shadow(0 7px 12px rgba(15, 23, 42, 0.14));
  transition: transform 220ms ease, filter 220ms ease;
  animation: brandIntro 680ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.brand-text {
  color: #0f172a;
  font-weight: 850;
  transition: color 180ms ease;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.main-nav a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid var(--teal);
  border-radius: 8px;
  color: var(--teal);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button.open span:nth-child(2) {
  opacity: 0;
}

.menu-button.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(760px, 84vh);
  padding: 96px clamp(18px, 5vw, 72px) 88px;
  overflow: hidden;
  background: #eef7f5;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(248, 250, 252, 0.68);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 690px;
  margin-bottom: 22px;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.24);
}

.button-secondary {
  background: var(--panel);
  color: var(--text);
  border-color: var(--line);
}

.trust-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.trust-list li {
  padding: 8px 10px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 118, 110, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
}

.hero-scene.has-reactive-grid {
  background: none;
}

.hero-grid-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: none;
  contain: strict;
  animation: none !important;
  transition: none !important;
}

.hero-scene > .scene-window {
  z-index: 2;
}

[data-demo-plan] {
  display: inline-flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border: 1px solid rgba(148, 163, 184, 0.48);
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.92);
  color: #64748b;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

[data-demo-plan].is-demo-pending,
[data-demo-plan][aria-disabled="true"] {
  cursor: not-allowed;
}

[data-demo-plan].is-demo-active {
  border-color: rgba(15, 118, 110, 0.35);
  background: rgba(240, 253, 250, 0.94);
  color: var(--teal);
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  [data-demo-plan].is-demo-active:hover {
    border-color: rgba(15, 118, 110, 0.62);
    background: #ecfdf5;
    transform: translateY(-1px);
  }
}

[data-demo-plan].is-demo-active:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.2);
  outline-offset: 3px;
}

.demo-plan-grid .pricing-card {
  display: flex;
  flex-direction: column;
}

.demo-plan-grid .check-list {
  flex: 1 1 auto;
}

.demo-card-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.demo-card-actions .text-link {
  display: inline-flex;
  line-height: 1.35;
}

.scene-window {
  position: absolute;
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.scene-window-a {
  right: 8%;
  top: 16%;
  width: 340px;
  padding: 18px;
}

.scene-window-b {
  right: 7%;
  bottom: 8%;
  width: 350px;
  padding: 18px;
}

.scene-window-c {
  right: 4%;
  bottom: 40%;
  width: 190px;
  padding: 16px;
  display: grid;
  gap: 6px;
}

.window-bar {
  width: 86px;
  height: 8px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--blue-soft);
}

.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.metric-row strong,
.scene-window strong {
  color: var(--text);
}

.progress-line {
  height: 10px;
  margin-top: 16px;
  border-radius: 8px;
  background: #e2e8f0;
  overflow: hidden;
}

.progress-line span {
  display: block;
  height: 100%;
  background: var(--teal);
}

.section {
  padding: 92px clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head.compact {
  max-width: 720px;
}

.section-head h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

.problem-band,
.pricing-band,
.faq-band {
  background: #fff;
}

.feature-grid,
.solution-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-card,
.solution-card,
.pricing-card,
.result-card,
.lead-form,
.process-list article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.feature-card,
.solution-card,
.pricing-card {
  padding: 22px;
}

.card-kicker,
.badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 9px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.feature-card h3,
.solution-card h3,
.pricing-card h3 {
  font-size: 21px;
  line-height: 1.2;
}

.feature-card p,
.solution-card p,
.pricing-card p {
  color: var(--muted);
}

.solution-card a {
  color: var(--teal);
  font-weight: 800;
}

.demo-section {
  background: #f1f7ff;
}

.demo-shell {
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.tab-button {
  min-height: 54px;
  border: 0;
  border-right: 1px solid var(--line);
  background: #f8fafc;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

.tab-button:last-child {
  border-right: 0;
}

.tab-button.active {
  background: #fff;
  color: var(--blue);
}

.demo-panel {
  display: none;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  padding: 24px;
}

.demo-panel.active {
  display: grid;
}

.form-stack,
.calculator-grid,
.lead-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 14px;
  font-weight: 750;
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: #fff;
  color: var(--text);
}

textarea {
  min-height: 108px;
  resize: vertical;
}

.result-card {
  min-height: 260px;
  padding: 22px;
}

.result-card h3 {
  margin-bottom: 10px;
}

.result-card p,
.result-card li {
  color: var(--muted);
}

.result-card ul {
  padding-left: 20px;
}

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

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

.savings-metrics strong {
  display: block;
  padding: 16px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 28px;
}

.price {
  color: var(--amber);
  font-size: 30px;
  font-weight: 900;
}

.pricing-card.highlighted {
  border-color: rgba(15, 118, 110, 0.38);
  box-shadow: 0 18px 46px rgba(15, 118, 110, 0.14);
  animation: pricingGlow 4.8s ease-in-out infinite;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.process-list article {
  padding: 20px;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
}

.process-list p {
  color: var(--muted);
}

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

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 850;
}

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

.contact-section {
  background: #eef7f5;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 40px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: start;
}

.contact-layout h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
}

.contact-layout p {
  color: var(--muted);
  font-size: 18px;
}

.contact-facts {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-facts span {
  padding: 12px 14px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.lead-form {
  padding: 22px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 38px clamp(18px, 5vw, 72px);
  background: #0f172a;
  color: #fff;
}

.site-footer a {
  color: #a7f3d0;
  font-weight: 800;
}

.site-footer {
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(94, 234, 212, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(147, 197, 253, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.7;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.38);
  outline-offset: 3px;
}

.button {
  position: relative;
  overflow: hidden;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.32), transparent 80%);
  transform: translateX(-130%);
  transition: transform 520ms ease;
}

.button:hover::after {
  transform: translateX(130%);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.breadcrumbs a {
  color: var(--teal);
}

.breadcrumbs span::before {
  content: "/";
  margin-right: 8px;
  color: #94a3b8;
}

.mobile-sticky-cta,
.scroll-top {
  position: fixed;
  z-index: 80;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.22);
}

.mobile-sticky-cta {
  left: 16px;
  right: 16px;
  bottom: 14px;
  display: none;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
}

.scroll-top {
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  background: #0f172a;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.section-note {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  text-align: center;
}

.trust-strip,
.case-grid,
.comparison-table-wrap,
.quiz-card,
.accordion-list,
.demo-history,
.copy-toolbar {
  max-width: 1180px;
  margin: 0 auto;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-item,
.case-card,
.quiz-card,
.comparison-table-wrap,
.accordion-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.trust-item,
.case-card {
  padding: 20px;
}

.trust-item strong,
.case-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.trust-item span,
.case-card p {
  color: var(--muted);
}

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

.comparison-table-wrap {
  overflow: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

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

.comparison-table th {
  background: #f8fafc;
  color: var(--text);
}

.comparison-table td {
  color: var(--muted);
}

.comparison-table strong {
  color: var(--teal);
}

.quiz-card {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.quiz-options,
.faq-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-chip-row {
  margin-top: 18px;
}

.quiz-options button,
.faq-chip-row button,
.copy-button,
.history-clear {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  font-weight: 850;
}

.quiz-options button,
.faq-chip-row button {
  padding: 9px 13px;
}

.quiz-options button.active,
.faq-chip-row button.active {
  border-color: var(--teal);
  background: var(--green-soft);
  color: var(--teal);
}

.quiz-result {
  padding: 16px;
  border-radius: 8px;
  background: #eef7f5;
  color: var(--text);
}

.accordion-list {
  display: grid;
  gap: 12px;
}

.accordion-list details {
  padding: 18px 20px;
}

.accordion-list summary {
  cursor: pointer;
  font-weight: 850;
}

.accordion-list p {
  color: var(--muted);
}

.copy-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.copy-button,
.history-clear {
  padding: 8px 12px;
}

.demo-history {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.history-item {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
}

.history-item strong {
  color: var(--text);
}

.result-card.loading {
  position: relative;
  color: transparent;
  overflow: hidden;
}

.result-card.loading::before,
.result-card.loading::after {
  content: "";
  display: block;
  height: 14px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: linear-gradient(90deg, #e5e7eb, #f8fafc, #e5e7eb);
  background-size: 220% 100%;
  animation: skeleton 1.1s ease-in-out infinite;
}

.result-card.loading::before {
  width: 70%;
}

.result-card.loading::after {
  width: 92%;
}

@keyframes skeleton {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.brief-steps {
  display: grid;
  gap: 18px;
}

.step-indicator {
  display: flex;
  gap: 8px;
}

.step-indicator span {
  flex: 1;
  height: 8px;
  border-radius: 8px;
  background: #e2e8f0;
}

.step-indicator span.active {
  background: var(--teal);
}

.brief-step {
  display: none;
  gap: 14px;
}

.brief-step.active {
  display: grid;
}

.form-error {
  display: none;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fef2f2;
  color: #b91c1c;
  font-weight: 750;
}

.form-error.visible {
  display: block;
}

.success-panel {
  max-width: 780px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

@media print {
  .site-header,
  .portal-header,
  .dashboard-sidebar,
  .mobile-sticky-cta,
  .scroll-top,
  .hero-actions,
  .button,
  script {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section,
  .page-hero,
  .hero {
    padding: 24px 0;
    background: #fff !important;
  }
}

.main-nav a.active {
  color: var(--text);
}

.site-header.scrolled {
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.page-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: 34px;
  align-items: center;
  min-height: 560px;
  padding: 96px clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(15, 118, 110, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px),
    #eef7f5;
  background-size: 58px 58px;
  overflow: hidden;
}

.page-hero.has-reactive-grid {
  background: #eef7f5;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.page-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.03;
}

.page-hero p {
  color: var(--muted);
  font-size: 18px;
}

.page-hero-panel {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.comparison-mini,
.console-line {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.comparison-mini:last-child,
.console-line:last-child {
  border-bottom: 0;
}

.comparison-mini span,
.console-line {
  color: var(--muted);
}

.console-line span {
  color: var(--blue);
  font-weight: 900;
}

.price-large {
  margin: 8px 0 10px;
  color: var(--amber);
  font-size: 44px;
  font-weight: 950;
  line-height: 1;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 44px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
}

.split-layout h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
}

.split-layout p {
  color: var(--muted);
  font-size: 18px;
}

.stacked-cards {
  display: grid;
  gap: 14px;
}

.service-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

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

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

.cta-band {
  background: #0f172a;
  color: #fff;
}

.cta-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

.cta-inner p {
  color: #cbd5e1;
  font-size: 18px;
}

.cta-inner .eyebrow {
  color: #5eead4;
}

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

.check-list li {
  position: relative;
  padding-left: 22px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.billing-toggle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 720px;
  margin: -18px auto 32px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.billing-toggle button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 10px 16px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 850;
}

.billing-toggle button.active {
  background: var(--teal);
  color: #fff;
}

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

.quick-choice-grid span,
.quick-choice-grid button,
.form-note {
  color: var(--muted);
}

.hp-turnstile-wrap {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.25rem;
}

.hp-turnstile-note {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
  margin: 0;
}

.quick-choice-grid span,
.quick-choice-grid button {
  padding: 12px 14px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.quick-choice-grid button {
  width: 100%;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.quick-choice-grid button:hover,
.quick-choice-grid button:focus-visible,
.quick-choice-grid button.active {
  border-color: var(--teal);
  background: rgba(15, 118, 110, 0.1);
  color: var(--ink);
}

.quick-choice-grid button:active {
  transform: translateY(1px);
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.faq-hero .page-hero-panel {
  align-self: stretch;
  display: grid;
  align-content: center;
}

.faq-search-label {
  margin-top: 12px;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.faq-count {
  margin: 10px 0 0;
  font-size: 14px;
}

.faq-page-section {
  background: #fff;
}

.faq-category {
  max-width: 960px;
  margin: 0 auto 42px;
}

.faq-category h2 {
  margin-bottom: 18px;
  font-size: clamp(25px, 3vw, 34px);
}

.faq-page-list details {
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.faq-page-list details:hover {
  border-color: rgba(15, 118, 110, 0.32);
  transform: translateY(-1px);
}

.faq-page-list details[hidden] {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal,
.page-hero .reveal {
  opacity: 1;
  transform: none;
}

.feature-card,
.solution-card,
.pricing-card,
.process-list article,
.page-hero-panel {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.solution-card:hover,
.pricing-card:hover,
.process-list article:hover,
.page-hero-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
}

.scene-window-a {
  animation: floatPanel 6s ease-in-out infinite;
  animation-delay: -1.2s;
}

.scene-window-b {
  animation: floatPanel 7.5s ease-in-out infinite;
  animation-delay: -3.4s;
}

.scene-window-c {
  animation: floatPanel 5.6s ease-in-out infinite;
  animation-delay: -2.1s;
}

.progress-line span {
  transform-origin: left center;
  animation: progressGrow 1.15s cubic-bezier(0.2, 0.8, 0.2, 1) both, progressPulse 2.6s ease-in-out 1.15s infinite;
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-11px) rotate(0.35deg);
  }
}

@keyframes progressPulse {
  0%,
  100% {
    opacity: 0.78;
  }
  50% {
    opacity: 1;
  }
}

@keyframes pricingGlow {
  0%,
  100% {
    box-shadow: 0 18px 46px rgba(15, 118, 110, 0.14);
  }
  50% {
    box-shadow: 0 22px 58px rgba(37, 99, 235, 0.18);
  }
}

main {
  animation: pageIn 420ms ease-out both;
}

.brand:hover .brand-mark {
  transform: translateY(-1px) rotate(-2deg) scale(1.04);
  filter: drop-shadow(0 10px 16px rgba(15, 118, 110, 0.22));
}

.brand:hover .brand-text {
  color: var(--teal);
}

.site-header.scrolled .brand-mark {
  transform: scale(0.96);
}

.main-nav a:not(.nav-cta) {
  position: relative;
  transition: color 180ms ease;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.main-nav a:not(.nav-cta):hover::after,
.main-nav a:not(.nav-cta).active::after {
  transform: scaleX(1);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.faq-chip-row button,
.billing-toggle button,
.tab-button {
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

.faq-chip-row button:hover,
.billing-toggle button:hover,
.tab-button:hover {
  transform: translateY(-1px);
}

.faq-chip-row button.active,
.billing-toggle button.active,
.tab-button.active {
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.13);
}

.faq-list details[open],
.accordion-list details[open] {
  border-color: rgba(15, 118, 110, 0.32);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.faq-list details[open] > p,
.accordion-list details[open] > p {
  animation: accordionIn 240ms ease-out both;
}

.feature-card,
.solution-card,
.pricing-card,
.trust-item,
.case-card,
.process-list article,
.page-hero-panel {
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.solution-card::before,
.pricing-card::before,
.trust-item::before,
.case-card::before,
.process-list article::before,
.page-hero-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

@media (hover: hover) {
  .feature-card:hover::before,
  .solution-card:hover::before,
  .pricing-card:hover::before,
  .trust-item:hover::before,
  .case-card:hover::before,
  .process-list article:hover::before,
  .page-hero-panel:hover::before {
    transform: scaleX(1);
  }
}

@keyframes brandIntro {
  0% {
    opacity: 0;
    transform: scale(0.72) rotate(-8deg);
  }
  70% {
    opacity: 1;
    transform: scale(1.06) rotate(1deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes progressGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes accordionIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-grid-canvas {
    display: none !important;
  }
}

@media print {
  .hero-grid-canvas {
    display: none !important;
  }
}

.portal-body,
.dashboard-body {
  background: #f6f8fb;
}

.portal-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(246, 248, 251, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  backdrop-filter: blur(16px);
}

.portal-nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 800;
}

.portal-nav a:hover {
  color: var(--text);
}

.portal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 42px;
  align-items: center;
  min-height: 690px;
  padding: 88px clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 82% 22%, rgba(37, 99, 235, 0.14), transparent 34%),
    linear-gradient(90deg, rgba(15, 118, 110, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px),
    #eef7f5;
  background-size: auto, 58px 58px, 58px 58px, auto;
}

.portal-hero-copy {
  max-width: 760px;
}

.portal-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.02;
}

.portal-hero-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
}

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

.portal-status-row span,
.portal-status-row strong {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 118, 110, 0.14);
}

.portal-status-row strong {
  color: var(--teal);
}

.login-card {
  padding: 26px;
  border: 1px solid rgba(148, 163, 184, 0.38);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.login-card h2 {
  font-size: 32px;
}

.login-card p,
.login-links a {
  color: var(--muted);
}

.login-card form {
  display: grid;
  gap: 14px;
}

.login-links {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  font-weight: 750;
}

.portal-section {
  background: #fff;
}

.portal-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.portal-action {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.portal-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
}

.portal-action span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue);
  font-weight: 950;
}

.portal-action p {
  color: var(--muted);
}

.portal-preview-band {
  background: #0f172a;
}

.dashboard-preview {
  display: grid;
  grid-template-columns: 240px 1fr;
  max-width: 980px;
  min-height: 360px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #111827;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.preview-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  background: #0b1220;
  color: #cbd5e1;
}

.preview-sidebar strong {
  color: #fff;
}

.preview-main {
  padding: 28px;
  background: #f8fafc;
}

.preview-topline,
.preview-cards {
  display: grid;
  gap: 14px;
}

.preview-topline {
  margin-bottom: 24px;
  color: var(--muted);
}

.preview-topline strong {
  color: var(--text);
  font-size: 28px;
}

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

.preview-cards span {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 850;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}

.dashboard-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  align-content: start;
  gap: 26px;
  padding: 22px;
  background: #0f172a;
  color: #fff;
}

.dashboard-brand {
  color: #fff;
}

.dashboard-menu {
  display: grid;
  gap: 8px;
}

.dashboard-menu a {
  padding: 12px 14px;
  border-radius: 8px;
  color: #cbd5e1;
  font-weight: 800;
}

.dashboard-menu a:hover,
.dashboard-menu a.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.sidebar-card {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.sidebar-card p {
  color: #cbd5e1;
}

.dashboard-main {
  display: grid;
  gap: 22px;
  padding: 28px;
}

.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.dashboard-topbar h1 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 44px);
}

.topbar-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dashboard-grid,
.dashboard-columns,
.order-grid {
  display: grid;
  gap: 18px;
}

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

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

.metric-card,
.dashboard-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.metric-card {
  padding: 20px;
}

.metric-card span,
.metric-card p {
  color: var(--muted);
}

.metric-card strong {
  display: block;
  margin: 6px 0;
  color: var(--teal);
  font-size: 42px;
  line-height: 1;
}

.dashboard-panel {
  padding: 22px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.panel-head h2 {
  margin: 0;
  font-size: 24px;
}

.service-table,
.invoice-list,
.domain-list,
.assistant-actions,
.ticket-form {
  display: grid;
  gap: 12px;
}

.service-row {
  display: grid;
  grid-template-columns: 16px 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.service-row p,
.invoice-list span,
.domain-list span {
  margin: 2px 0 0;
  color: var(--muted);
}

.service-row button,
.assistant-actions button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.status-dot.ok {
  background: #22c55e;
}

.status-dot.warn {
  background: var(--amber);
}

.invoice-list div,
.domain-list div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.assistant-card {
  background: #eef7f5;
}

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

.assistant-actions button {
  padding: 13px;
  text-align: left;
}

.ticket-form textarea {
  min-height: 120px;
}

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

.order-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.order-grid p {
  color: var(--muted);
}

/* 2026 paslaugų architektūra */
.pillar-grid,
.topic-grid,
.answer-grid,
.metric-grid {
  display: grid;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.pillar-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.topic-grid,
.answer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.metric-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.metric-grid.metric-grid-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.metric-grid > div { display: grid; gap: 4px; }
.metric-grid > div strong { color: var(--text); font-size: 20px; }
.metric-grid > div span { color: var(--muted); }

.pillar-card,
.topic-card,
.answer-card,
.metric-box,
.definition-box,
.notice-box,
.toc-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.pillar-card,
.answer-card,
.metric-box,
.definition-box,
.notice-box,
.toc-card { padding: 24px; }

.pillar-card { position: relative; overflow: hidden; }
.pillar-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
}

.pillar-card h3,
.answer-card h3,
.topic-card strong { font-size: 21px; line-height: 1.2; }

.pillar-card p,
.answer-card p,
.metric-box p,
.definition-box p,
.notice-box p,
.toc-card p { color: var(--muted); }

.pillar-card a,
.text-link,
.answer-card a { color: var(--teal); font-weight: 850; }

.topic-card {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.topic-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 118, 110, 0.42);
  box-shadow: var(--shadow);
}

.topic-card span { color: var(--muted); }

.status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 9px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  background: var(--blue-soft);
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 850;
}

.proof-band,
.knowledge-band { background: #eef7f5; }
.section-action { max-width: 1180px; margin: 30px auto 0; text-align: center; }

.definition-box {
  max-width: 960px;
  margin: 0 auto 32px;
  border-left: 4px solid var(--teal);
}

.definition-box strong { display: block; margin-bottom: 8px; font-size: 19px; }
.notice-box { border-color: rgba(245, 158, 11, 0.35); background: #fffbeb; }
.notice-box strong { color: #92400e; }

.toc-card {
  position: relative;
  z-index: 3;
  max-width: 1120px;
  margin: -34px auto 0;
}

.toc-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.toc-links a {
  padding: 8px 10px;
  border-radius: 8px;
  background: #f1f5f9;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
}

.metric-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: clamp(24px, 3vw, 36px);
}

.content-narrow { max-width: 820px; margin: 0 auto; }
.content-narrow h2 { margin-top: 44px; font-size: clamp(28px, 4vw, 42px); line-height: 1.12; }
.content-narrow h3 { margin-top: 30px; font-size: 23px; }
.content-narrow p,
.content-narrow li { color: var(--muted); font-size: 17px; }
.content-narrow li + li { margin-top: 8px; }
.content-narrow a { color: var(--teal); font-weight: 750; }

.steps-inline {
  counter-reset: steps;
  display: grid;
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}

.steps-inline article {
  counter-increment: steps;
  position: relative;
  padding: 20px 20px 20px 70px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.steps-inline article::before {
  content: counter(steps);
  position: absolute;
  left: 20px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
}

.steps-inline p { margin-bottom: 0; color: var(--muted); }

.site-footer { display: block; padding: 56px clamp(18px, 5vw, 72px) 24px; }
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-grid > div { display: grid; align-content: start; gap: 10px; }
.footer-grid p,
.footer-grid a,
.footer-bottom { color: #94a3b8; }
.footer-grid strong { color: #fff; }
.footer-brand .brand-text { color: #fff; }
.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  max-width: 1180px;
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  font-size: 13px;
}

.main-nav { gap: 12px; }
.main-nav a { white-space: nowrap; }

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 72px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-cta {
    text-align: center;
  }

  .scene-window-a,
  .scene-window-b,
  .scene-window-c {
    display: none;
  }

  .feature-grid,
  .solution-grid,
  .pricing-grid,
  .pillar-grid,
  .topic-grid,
  .answer-grid,
  .metric-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .demo-panel,
  .contact-layout,
  .page-hero,
  .split-layout,
  .split-layout.reverse {
    grid-template-columns: 1fr;
  }

  .service-matrix,
  .pricing-grid.three,
  .process-list.four,
  .portal-action-grid,
  .dashboard-grid,
  .dashboard-columns,
  .order-grid,
  .preview-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portal-hero,
  .dashboard-preview {
    grid-template-columns: 1fr;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    position: relative;
    height: auto;
  }

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

  .dashboard-topbar {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
    background: #f8fafc;
    backdrop-filter: none;
  }

  .brand-text {
    font-size: 15px;
  }

  .hero {
    min-height: 760px;
    padding-top: 78px;
    padding-bottom: 54px;
  }

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

  .button {
    text-align: center;
  }

  .trust-list li {
    width: 100%;
  }

  .scene-window {
    display: none;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .feature-grid,
  .solution-grid,
  .pricing-grid,
  .pillar-grid,
  .topic-grid,
  .answer-grid,
  .metric-grid,
  .footer-grid,
  .pricing-grid.three,
  .trust-strip,
  .case-grid,
  .process-list,
  .process-list.four,
  .calculator-grid,
  .savings-metrics,
  .service-matrix,
  .quick-choice-grid,
  .portal-action-grid,
  .dashboard-grid,
  .dashboard-columns,
  .order-grid,
  .preview-cards,
  .assistant-actions,
  .dashboard-menu {
    grid-template-columns: 1fr;
  }

  .portal-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .portal-nav {
    flex-wrap: wrap;
  }

  .portal-hero {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 56px;
    grid-template-columns: 1fr;
  }

  .login-links,
  .portal-status-row,
  .topbar-actions {
    flex-direction: column;
  }

  .dashboard-main {
    padding: 18px;
  }

  .service-row {
    grid-template-columns: 16px 1fr;
  }

  .service-row button,
  .service-row > span:not(.status-dot) {
    grid-column: 2;
  }

  .page-hero {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 56px;
  }

  .page-hero-panel {
    padding: 18px;
  }

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

  .tab-button {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 86px;
  }

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

  .mobile-sticky-cta {
    display: flex;
  }

  .scroll-top {
    bottom: 76px;
  }
}

/* 2026-09-05: konversijų, patirties ir kainodaros aiškumo papildymai */
.experience-section {
  background: linear-gradient(180deg, #f5fbfa 0%, #ffffff 100%);
}

.experience-section .trust-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.experience-section .trust-item strong {
  color: var(--teal);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.1;
}

.experience-ribbon {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  max-width: 1180px;
  margin: 24px auto 0;
  padding: 16px 20px;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 8px;
  background: var(--green-soft);
}

.experience-ribbon strong {
  color: var(--teal);
}

.experience-ribbon span {
  color: var(--muted);
}

.experience-ribbon a {
  color: var(--teal);
  font-weight: 850;
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.price-total {
  min-height: 42px;
  margin-top: -6px;
  font-size: 13px;
  font-weight: 750;
}

.plan-fit-list {
  display: grid;
  gap: 8px;
  margin: 2px 0 22px;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  list-style: none;
}

.plan-fit-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--teal);
  font-weight: 900;
}

.plan-cta {
  width: 100%;
  margin-top: auto;
  text-align: center;
}

.billing-summary {
  max-width: 780px;
  margin: 14px auto 28px;
  color: var(--muted);
  text-align: center;
}

.contact-selection {
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 8px;
  background: var(--blue-soft);
}

.contact-selection[hidden] {
  display: none;
}

.contact-selection .eyebrow {
  margin: 0;
}

.contact-selection strong {
  color: var(--text);
  font-size: 18px;
}

.contact-selection span {
  color: var(--muted);
  font-size: 14px;
}

.contact-selection a,
.form-note a,
.policy-content a {
  color: var(--teal);
  font-weight: 800;
}

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

.policy-content {
  margin: 0 auto;
}

.policy-content h2 {
  margin: 34px 0 12px;
  font-size: clamp(24px, 3vw, 32px);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content > p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .experience-section .trust-strip,
  .process-list.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .experience-ribbon {
    margin-right: 18px;
    margin-left: 18px;
  }
}

@media (max-width: 680px) {
  body.has-mobile-sticky {
    padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  }

  .site-footer {
    padding-bottom: 24px;
  }

  .mobile-sticky-cta {
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  }

  body.menu-open .mobile-sticky-cta {
    display: none;
  }

  .scroll-top {
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  }

  .experience-section .trust-strip,
  .process-list.three {
    grid-template-columns: 1fr;
  }

  .experience-ribbon {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

/* 2026-09-05: klientų projektų galerija */
.projects-band {
  background: linear-gradient(180deg, #f5fbfa 0%, #f8fafc 100%);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.project-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.project-card:hover,
.project-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(15, 118, 110, 0.42);
  box-shadow: var(--shadow);
}

.project-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-preview {
  position: relative;
  display: block;
  aspect-ratio: 8 / 5;
  background: #e2e8f0;
  overflow: hidden;
}

.project-preview::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.09));
  pointer-events: none;
}

.project-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 300ms ease;
}

.project-card:hover .project-preview img,
.project-card:focus-within .project-preview img {
  transform: scale(1.025);
}

.project-copy {
  display: grid;
  align-content: start;
  gap: 8px;
  flex: 1;
  padding: 20px;
}

.project-copy > strong {
  color: var(--text);
  font-size: 21px;
  line-height: 1.2;
}

.project-copy > span:not(.project-type):not(.project-link) {
  color: var(--muted);
}

.project-type {
  width: fit-content;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.project-link {
  margin-top: auto;
  padding-top: 8px;
  color: var(--teal);
  font-weight: 850;
}

.projects-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 22px;
  max-width: 1180px;
  margin: 30px auto 0;
  padding: 18px 20px;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 8px;
  background: #fff;
}

.projects-note strong {
  color: var(--teal);
}

.projects-note span {
  color: var(--muted);
}

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

@media (max-width: 680px) {
  .project-grid,
  .projects-note {
    grid-template-columns: 1fr;
  }

  .project-grid {
    gap: 16px;
  }

  .project-copy {
    padding: 18px;
  }

  .project-grid-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .project-grid-featured .project-copy {
    gap: 6px;
    padding: 14px;
  }

  .project-grid-featured .project-copy > strong {
    font-size: 17px;
  }

  .project-grid-featured .project-copy > span:not(.project-type):not(.project-link),
  .project-grid-featured .project-link {
    font-size: 13px;
  }
}

@media (max-width: 359px) {
  .project-grid-featured {
    grid-template-columns: 1fr;
  }
}

/* 2026-09-06: patikrintų įgyvendinimo atvejų pateikimas */
.case-study {
  display: grid;
  gap: 30px;
}

.case-study-tinted {
  background: linear-gradient(180deg, #f5fbfa 0%, #f8fafc 100%);
}

.case-study-heading,
.case-study-layout,
.evidence-gallery,
.test-result-grid {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
}

.case-study-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 28px;
}

.case-study-heading h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.case-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border: 1px solid rgba(15, 118, 110, 0.24);
  border-radius: 50%;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 900;
}

.case-study-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 26px;
  align-items: start;
}

.case-study-copy {
  max-width: 780px;
}

.case-study-copy h3 {
  margin: 24px 0 8px;
  font-size: 19px;
}

.case-study-copy h3:first-child {
  margin-top: 0;
}

.case-study-copy p {
  color: var(--muted);
  font-size: 17px;
}

.case-study-copy .hero-actions,
.case-study-copy .text-link {
  margin-top: 24px;
}

.case-verification {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
}

.case-verification strong {
  color: var(--teal);
  font-size: 20px;
}

.case-verification p {
  margin-bottom: 14px;
  color: var(--muted);
}

.case-verification p:last-child {
  margin-bottom: 0;
}

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

.evidence-gallery-single {
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
}

.evidence-card {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

.evidence-media {
  display: grid;
  place-items: center;
  aspect-ratio: 8 / 5;
  padding: 12px;
  background: #eef3f7;
  overflow: hidden;
}

a.evidence-media {
  position: relative;
  color: inherit;
  text-decoration: none;
  cursor: zoom-in;
}

a.evidence-media::after {
  content: "Visu dydžiu ↗";
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.84);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 7px 18px rgba(15, 23, 42, 0.2);
  pointer-events: none;
}

a.evidence-media:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: -3px;
}

.evidence-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

a.evidence-media img {
  transition: transform 180ms ease;
}

a.evidence-media:hover img,
a.evidence-media:focus-visible img {
  transform: scale(1.012);
}

.evidence-card-phone .evidence-media img {
  width: auto;
  max-width: 100%;
}

.evidence-card figcaption {
  display: grid;
  gap: 6px;
  padding: 18px 20px 20px;
}

.evidence-card figcaption strong {
  color: var(--text);
  font-size: 18px;
}

.evidence-card figcaption span {
  color: var(--muted);
  font-size: 14px;
}

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

.test-result-grid > div {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}

.test-result-grid strong {
  color: var(--teal);
  font-size: clamp(25px, 3vw, 34px);
}

.test-result-grid span {
  color: var(--muted);
}

.before-after-list {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
}

.before-after-item {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.055);
}

.before-after-item h3 {
  margin: 0 0 14px;
  font-size: 20px;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  overflow: hidden;
}

.before-after-grid > div {
  min-width: 0;
  padding: 18px;
  background: #f8fafc;
}

.before-after-grid .before-after-outcome {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.09), rgba(37, 99, 235, 0.06));
}

.before-after-label {
  display: block;
  margin-bottom: 7px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.before-after-grid p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .case-study-layout,
  .evidence-gallery {
    grid-template-columns: 1fr;
  }

  .case-study-copy {
    max-width: none;
  }

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

  .evidence-media {
    aspect-ratio: auto;
    min-height: 320px;
  }

  .evidence-media img {
    max-height: 520px;
  }
}

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

  .case-study-heading {
    display: grid;
    gap: 18px;
  }

  .case-study-heading .status-pill {
    justify-self: start;
  }

  .test-result-grid {
    grid-template-columns: 1fr;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .evidence-media {
    min-height: 220px;
    padding: 8px;
  }

  a.evidence-media::after {
    right: 8px;
    bottom: 8px;
    padding: 6px 8px;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  a.evidence-media img {
    transition: none;
  }
}

/* 2026-09-05: patvirtintas el. parduotuvių planų palyginimas */
.plan-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.plan-summary-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.plan-summary-card.featured {
  border-color: rgba(15, 118, 110, 0.44);
  box-shadow: 0 18px 42px rgba(15, 118, 110, 0.12);
}

.plan-summary-step {
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 850;
}

.plan-summary-card.featured .plan-summary-step {
  background: var(--green-soft);
  color: var(--teal);
}

.plan-summary-card h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.plan-summary-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.plan-summary-card a {
  margin-top: auto;
  color: var(--teal);
  font-weight: 850;
}

.plan-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1180px;
  margin: 28px auto 0;
}

.plan-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}

.plan-status.is-included {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.plan-status.is-not-included {
  border-color: #fecaca;
  background: #fff7f7;
  color: #991b1b;
}

.plan-status.is-optional {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}

.plan-matrix-note {
  max-width: 1180px;
  margin: 16px auto 0;
  padding: 16px 18px;
  border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0;
  background: #f0fdfa;
  color: var(--muted);
}

.plan-matrix-note strong {
  color: var(--text);
}

.plan-matrix-tools {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  align-items: end;
  gap: 14px 22px;
  max-width: 1180px;
  margin: 0 auto 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.plan-feature-search {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.plan-feature-search input {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  background: #fff;
  color: var(--text);
}

.plan-feature-search input:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(15, 118, 110, 0.15);
}

.plan-matrix-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.button.button-small {
  min-height: 44px;
  padding: 10px 14px;
  font-size: 14px;
}

.plan-feature-result {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.plan-filter-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.plan-filter-row > span {
  margin-right: 2px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.plan-filter-row button {
  min-height: 38px;
  padding: 7px 11px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.plan-filter-row button:hover,
.plan-filter-row button:focus-visible,
.plan-filter-row button.active {
  border-color: var(--teal);
  background: #f0fdfa;
  color: var(--teal);
}

.plan-feature-groups {
  display: grid;
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.plan-scroll-hint {
  display: none;
}

.plan-feature-group {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.plan-feature-group[hidden],
.plan-feature-table tr[hidden] {
  display: none;
}

.plan-feature-group > summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 16px 20px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

.plan-feature-group > summary::-webkit-details-marker {
  display: none;
}

.plan-feature-group > summary::after {
  content: "+";
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  margin-left: 64px;
  color: var(--teal);
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
}

.plan-feature-group[open] > summary::after {
  content: "−";
}

.plan-feature-group > summary > span:first-child {
  display: grid;
  grid-column: 1;
  grid-row: 1;
  gap: 4px;
}

.plan-feature-group > summary strong {
  font-size: 19px;
}

.plan-feature-group > summary small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 450;
}

.plan-feature-count {
  grid-column: 2;
  grid-row: 1;
  padding: 5px 8px;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.plan-feature-group[open] > summary {
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.plan-feature-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}

.plan-feature-table {
  width: 100%;
  min-width: 900px;
  border-collapse: separate;
  border-spacing: 0;
}

.plan-feature-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.plan-feature-table th,
.plan-feature-table td {
  padding: 13px 14px;
  border-bottom: 1px solid #edf2f7;
  vertical-align: middle;
}

.plan-feature-table thead th {
  position: sticky;
  top: 0;
  z-index: 3;
  background: #0f172a;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.plan-feature-table thead th:first-child {
  left: 0;
  z-index: 4;
  width: 44%;
  min-width: 310px;
  text-align: left;
}

.plan-feature-table tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
  width: 44%;
  min-width: 310px;
  background: #fff;
  color: var(--text);
  font-size: 15px;
  font-weight: 650;
  text-align: left;
}

.plan-feature-table tbody tr:nth-child(even) th,
.plan-feature-table tbody tr:nth-child(even) td {
  background: #fbfdff;
}

.plan-feature-table tbody tr:hover th,
.plan-feature-table tbody tr:hover td {
  background: #f0fdfa;
}

.plan-status-cell {
  width: 14%;
  text-align: center;
}

.plan-feature-addon {
  background: #eff6ff !important;
  color: #1d4ed8;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.plan-feature-addon span::before {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 7px;
  border-radius: 50%;
  background: #dbeafe;
}

.plan-addons-section {
  scroll-margin-top: 88px;
  border-top: 1px solid rgba(15, 118, 110, 0.12);
  border-bottom: 1px solid rgba(15, 118, 110, 0.12);
  background: linear-gradient(150deg, #f0fdfa 0%, #f8fafc 54%, #eff6ff 100%);
}

#plan-addons-title {
  scroll-margin-top: 112px;
}

.plan-addon-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 1180px;
  margin: -12px auto 24px;
  padding: 15px 18px;
  border: 1px solid rgba(15, 118, 110, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
}

.plan-addon-note strong {
  flex: 0 0 auto;
  color: var(--teal);
}

.plan-addon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.plan-addon-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.plan-addon-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 118, 110, 0.4);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

.plan-addon-card .status-pill {
  margin-bottom: 13px;
}

.plan-addon-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.22;
}

.plan-addon-card p {
  margin: 0 0 20px;
  color: var(--muted);
}

.plan-addon-card .button {
  width: 100%;
  margin-top: auto;
  text-align: center;
}

.automation-catalog-section {
  scroll-margin-top: 88px;
  background: linear-gradient(150deg, #f8fafc 0%, #f0fdfa 100%);
}

.automation-catalog-tools {
  display: grid;
  gap: 14px;
  max-width: 1180px;
  margin: 28px auto 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.automation-catalog-tools label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.automation-catalog-tools input {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.automation-catalog-tools input:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(15, 118, 110, 0.14);
}

.scenario-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.scenario-filter-row button {
  padding: 9px 12px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 999px;
  background: #fff;
  color: var(--teal);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.scenario-filter-row button:hover,
.scenario-filter-row button.active {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}

.scenario-result {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.automation-scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.scenario-card {
  min-width: 0;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.055);
}

.scenario-card[hidden] {
  display: none;
}

.scenario-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.scenario-card-meta span,
.scenario-card-meta strong {
  padding: 5px 8px;
  border-radius: 999px;
  background: #f1f5f9;
}

.scenario-card-meta strong {
  background: #ccfbf1;
  color: #0f766e;
}

.scenario-card h3 {
  margin: 0 0 9px;
  font-size: 20px;
  line-height: 1.25;
}

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

.scenario-flow {
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 13px;
}

.scenario-flow summary {
  color: var(--teal);
  font-weight: 850;
  cursor: pointer;
}

.scenario-flow dl {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
}

.scenario-flow dl > div {
  display: grid;
  grid-template-columns: minmax(115px, 0.34fr) minmax(0, 1fr);
  gap: 12px;
  padding: 10px 12px;
  border-radius: 7px;
  background: #f8fafc;
}

.scenario-flow dt {
  color: var(--text);
  font-weight: 850;
}

.scenario-flow dd {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .plan-summary-grid,
  .plan-addon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .plan-summary-grid,
  .plan-addon-grid,
  .plan-matrix-tools {
    grid-template-columns: 1fr;
  }

  .plan-addon-note {
    display: grid;
    gap: 4px;
  }

  .plan-summary-card,
  .plan-addon-card {
    padding: 20px;
  }

  .plan-matrix-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .plan-matrix-actions .button {
    width: 100%;
  }

  .plan-feature-result {
    grid-column: 1;
  }

  .plan-scroll-hint {
    display: block;
    max-width: 1180px;
    margin: -4px auto 14px;
    padding: 10px 12px;
    border-radius: 7px;
    background: #e0f2fe;
    color: #075985;
    font-size: 14px;
    font-weight: 700;
  }

  .plan-filter-row {
    grid-column: 1;
  }

  .plan-feature-group > summary {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 15px 17px;
  }

  .plan-feature-group > summary::after {
    grid-column: 1;
    justify-self: end;
    margin-left: 0;
  }

  .plan-feature-count {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }

  .plan-feature-group > summary strong {
    padding-right: 38px;
    font-size: 17px;
  }

  .plan-feature-table {
    min-width: 790px;
  }

  .plan-feature-table thead th:first-child,
  .plan-feature-table tbody th {
    min-width: 250px;
  }

  .plan-feature-table .plan-status span:last-child {
    display: none;
  }

  .plan-feature-table .plan-status {
    min-width: 32px;
    padding: 5px 8px;
  }

  .automation-scenario-grid {
    grid-template-columns: 1fr;
  }

  .scenario-flow dl > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}
