:root {
  --night: #05070d;
  --night-2: #0a101a;
  --night-3: #101826;
  --ink: #f7fbff;
  --ink-2: #dce5f2;
  --paper: #080d15;
  --paper-2: #0d1420;
  --card: rgba(255, 255, 255, 0.055);
  --muted: #aeb8c8;
  --muted-dark: #aeb8c8;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --cyan: #61e3ee;
  --cyan-2: #61e3ee;
  --mint: #70e4b3;
  --gold: #e8b86b;
  --radius: 8px;
  --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.26);
  --shadow-card: 0 28px 90px rgba(0, 0, 0, 0.36);
  --shadow-dark: 0 30px 90px rgba(0, 0, 0, 0.45);
  --max: 1180px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
span[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, #05070d 0%, #080d15 46%, #0a101a 100%);
  background-size: 48px 48px, 48px 48px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 400;
  transform: translateY(-140%);
  padding: 10px 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--night-2);
  color: #ffffff;
  transition: transform 0.2s ease;
}

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 250;
  background: rgba(5, 7, 13, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(calc(100% - 32px), 1280px);
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #ffffff;
  font-weight: 850;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 35px;
  height: 39px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(112, 228, 179, 0.24));
  transition: transform 0.2s ease, filter 0.2s ease;
}

.brand:hover .brand-mark {
  transform: translateY(-1px) scale(1.04);
  filter: drop-shadow(0 0 11px rgba(112, 228, 179, 0.46));
}

.brand-name {
  font-size: 17px;
  overflow-wrap: anywhere;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px;
  border-radius: var(--radius);
  color: #b9c3d1;
  font-size: 14px;
  font-weight: 760;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.primary-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.primary-nav .nav-contact {
  margin-left: 4px;
  border: 1px solid rgba(97, 227, 238, 0.44);
  color: #ffffff;
  background: rgba(97, 227, 238, 0.08);
}

.primary-nav .nav-contact:hover {
  border-color: rgba(97, 227, 238, 0.9);
  background: rgba(97, 227, 238, 0.15);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  margin-left: 6px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.lang-switch a {
  min-height: 32px;
  padding: 6px 10px;
  color: #b9c3d1;
}

.lang-switch a[aria-current="page"] {
  color: #031116;
  background: var(--cyan);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 280;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.menu-toggle:hover {
  border-color: rgba(97, 227, 238, 0.7);
  background: rgba(97, 227, 238, 0.1);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

body.nav-ready.menu-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  color: #ffffff;
  background: var(--night);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(5, 7, 13, 0.96) 0%, rgba(5, 7, 13, 0.82) 44%, rgba(5, 7, 13, 0.56) 100%),
    linear-gradient(180deg, rgba(5, 7, 13, 0.16) 0%, rgba(5, 7, 13, 0.92) 100%),
    url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.22;
  pointer-events: none;
}

.hero-inner {
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.54fr);
  gap: 54px;
  align-items: center;
  padding: 58px 0 42px;
}

.hero-copy,
.section-copy,
.contact-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  color: #ffffff;
  font-size: 64px;
  text-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

h2 {
  max-width: 820px;
  color: var(--ink);
  font-size: 44px;
}

h3 {
  color: var(--ink);
  font-size: 21px;
}

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

.hero-lead {
  max-width: 760px;
  margin-top: 24px;
  color: #dce5f2;
  font-size: 20px;
}

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

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  overflow: hidden;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.38) 45%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn-primary {
  border-color: rgba(97, 227, 238, 0.6);
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  color: #031116;
  box-shadow: 0 18px 38px rgba(97, 227, 238, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 24px 52px rgba(97, 227, 238, 0.28);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.btn.full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 850;
}

.text-link::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--cyan-2);
  transition: width 0.2s ease;
}

.text-link:hover::after {
  width: 44px;
}

.hero-panel {
  align-self: end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(7, 11, 18, 0.78);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(16px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.hero-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(97, 227, 238, 0.42);
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
}

.panel-topline::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(112, 228, 179, 0.14);
}

.panel-metric {
  display: grid;
  gap: 4px;
  padding: 20px 0;
}

.panel-metric span,
.contact-line span,
.dashboard-header span {
  color: var(--muted-dark);
  font-size: 13px;
}

.panel-metric strong {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.12;
}

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

.panel-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: #dce5f2;
  font-size: 13px;
  font-weight: 850;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.panel-grid span:hover {
  transform: translateY(-2px);
  border-color: rgba(97, 227, 238, 0.42);
  background: rgba(97, 227, 238, 0.09);
}

.panel-log {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.panel-log span {
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--muted-dark);
  font-size: 14px;
}

.panel-log span::before,
.proof-list span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.capability-strip {
  position: relative;
  z-index: 3;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: #111821;
}

.strip-track {
  display: flex;
  gap: 8px;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.strip-track span {
  flex: 0 0 auto;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  color: #d9e2ef;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 850;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.strip-track span:hover {
  transform: translateY(-2px);
  border-color: rgba(97, 227, 238, 0.42);
  background: rgba(97, 227, 238, 0.09);
}

.section {
  position: relative;
  padding: 100px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 36%),
    var(--paper);
}

.intro-section,
.systems-section,
.credibility-section {
  background:
    linear-gradient(180deg, rgba(97, 227, 238, 0.035), transparent 42%),
    #080d15;
}

.commerce-section {
  background:
    linear-gradient(90deg, rgba(97, 227, 238, 0.07), transparent 34%),
    #0c131f;
}

.operations-section {
  background:
    linear-gradient(135deg, rgba(97, 227, 238, 0.055), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 38%),
    #0a111c;
}

.packages-section {
  background:
    linear-gradient(135deg, rgba(232, 184, 107, 0.06), transparent 28%),
    linear-gradient(225deg, rgba(97, 227, 238, 0.055), transparent 34%),
    #070c14;
}

.process-section,
.usecase-section {
  background:
    linear-gradient(180deg, rgba(232, 184, 107, 0.035), transparent 38%),
    #090f18;
}

.contact-section {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(97, 227, 238, 0.12), transparent 36%),
    linear-gradient(180deg, #101826 0%, #060911 100%);
}

.two-column,
.dashboard-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 52px;
  align-items: center;
}

.section-copy p,
.section-header p,
.contact-copy p {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}

.section .eyebrow {
  color: var(--cyan-2);
}

.section-header {
  max-width: 880px;
  margin-bottom: 34px;
}

.contact-section .eyebrow {
  color: var(--cyan);
}

.contact-section h2,
.contact-section h3 {
  color: #ffffff;
}

.contact-section p {
  color: #dce5f2;
}

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

.issue-row,
.service-card,
.support-card,
.package-card,
.usecase-card,
.process-step,
.mini-grid > div,
.market-board {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    var(--card);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), var(--shadow-soft);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.issue-row::before,
.service-card::before,
.support-card::before,
.package-card::before,
.usecase-card::before,
.process-step::before,
.mini-grid > div::before,
.market-board::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(97, 227, 238, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 12%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.issue-row:hover,
.issue-row.is-hovering,
.service-card:hover,
.service-card.is-hovering,
.support-card:hover,
.support-card.is-hovering,
.package-card:hover,
.package-card.is-hovering,
.usecase-card:hover,
.usecase-card.is-hovering,
.process-step:hover,
.process-step.is-hovering,
.mini-grid > div:hover,
.mini-grid > div.is-hovering,
.market-board:hover,
.market-board.is-hovering {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-6px);
  border-color: rgba(97, 227, 238, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), var(--shadow-card);
}

.issue-row:hover::before,
.issue-row.is-hovering::before,
.service-card:hover::before,
.service-card.is-hovering::before,
.support-card:hover::before,
.support-card.is-hovering::before,
.package-card:hover::before,
.package-card.is-hovering::before,
.usecase-card:hover::before,
.usecase-card.is-hovering::before,
.process-step:hover::before,
.process-step.is-hovering::before,
.mini-grid > div:hover::before,
.mini-grid > div.is-hovering::before,
.market-board:hover::before,
.market-board.is-hovering::before {
  opacity: 1;
}

.issue-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
}

.issue-row span,
.service-number,
.process-step span {
  color: var(--gold);
  font-weight: 900;
}

.issue-row p {
  color: var(--muted);
}

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

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

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

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

.service-card {
  min-height: 254px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.support-card {
  min-height: 220px;
  padding: 20px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.package-card {
  min-height: 292px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.055);
}

.service-card h3,
.support-card h3,
.package-card h3,
.usecase-card h3,
.process-step h3,
.mini-grid h3 {
  position: relative;
  z-index: 1;
  color: var(--ink);
}

.service-card p,
.support-card p,
.package-card p,
.usecase-card p,
.process-step p,
.mini-grid p {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--muted);
  font-size: 15px;
}

.service-number {
  position: relative;
  z-index: 1;
}

.support-card span {
  position: relative;
  z-index: 1;
  color: var(--gold);
  font-weight: 900;
}

.package-tag {
  position: relative;
  z-index: 1;
  width: max-content;
  padding: 7px 10px;
  border: 1px solid rgba(97, 227, 238, 0.34);
  border-radius: var(--radius);
  color: var(--cyan);
  background: rgba(97, 227, 238, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.package-link {
  position: relative;
  z-index: 1;
  width: max-content;
  margin-top: auto;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.package-link::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--cyan);
  transition: width 0.2s ease;
}

.package-link:hover::after {
  width: 48px;
}

.market-board {
  display: grid;
  gap: 10px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    var(--card);
}

.market-row {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.market-row:hover {
  transform: translateX(4px);
  border-color: rgba(97, 227, 238, 0.35);
  background: rgba(97, 227, 238, 0.07);
}

.market-row span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.market-row span:last-child {
  color: var(--muted);
  font-size: 14px;
}

.market-row.strong {
  border-color: rgba(97, 227, 238, 0.32);
  background: rgba(97, 227, 238, 0.09);
}

.dashboard-layout {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
}

.ops-dashboard {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--night-2);
  box-shadow: var(--shadow-dark);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.ops-dashboard:hover {
  border-color: rgba(97, 227, 238, 0.36);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-5px);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-dark);
}

.dashboard-header strong {
  color: var(--mint);
  font-size: 14px;
}

.dashboard-bars {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.dashboard-bars span {
  position: relative;
  height: 14px;
  overflow: hidden;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
}

.dashboard-bars span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value);
  background: linear-gradient(90deg, var(--cyan), var(--mint));
}

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

.workflow-map span {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: #dce5f2;
  background: rgba(255, 255, 255, 0.055);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.workflow-map span:hover {
  transform: translateY(-2px);
  border-color: rgba(97, 227, 238, 0.42);
  background: rgba(97, 227, 238, 0.09);
}

.dashboard-table {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.dashboard-table div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-dark);
}

.dashboard-table div:last-child {
  border-bottom: 0;
}

.dashboard-table span {
  color: var(--muted-dark);
}

.dashboard-table strong {
  color: #ffffff;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.mini-grid > div {
  padding: 18px;
}

.mini-grid p {
  margin-top: 12px;
}

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

.process-step {
  min-height: 228px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.usecase-card {
  min-height: 190px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.usecase-card p {
  margin-top: auto;
}

.cred-image {
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-image:
    linear-gradient(180deg, rgba(5, 7, 13, 0.08), rgba(5, 7, 13, 0.38)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1400&q=82");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cred-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
}

.proof-list {
  display: grid;
  gap: 11px;
  margin-top: 26px;
}

.proof-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.contact-layout {
  align-items: stretch;
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(232, 184, 107, 0.1), transparent 38%),
    rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow-dark);
}

.contact-form {
  align-content: start;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span,
.form-note {
  color: var(--muted-dark);
  font-size: 13px;
  font-weight: 760;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(220, 229, 242, 0.58);
}

.contact-form select option {
  color: #101826;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(97, 227, 238, 0.62);
  background: rgba(97, 227, 238, 0.08);
  box-shadow: 0 0 0 4px rgba(97, 227, 238, 0.08);
}

.consent-line {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.consent-line input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--cyan);
}

.consent-line a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.human-check {
  padding: 12px 13px;
  border: 1px solid rgba(112, 228, 179, 0.3);
  border-radius: var(--radius);
  background: rgba(112, 228, 179, 0.07);
}

.human-check span {
  color: #dce5f2 !important;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 2px 0 0;
  text-align: center;
}

.form-status {
  display: none;
  padding: 13px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  border: 1px solid rgba(112, 228, 179, 0.42);
  background: rgba(112, 228, 179, 0.12);
  color: #d9ffef;
}

.form-status.is-error {
  border: 1px solid rgba(255, 138, 138, 0.42);
  background: rgba(255, 138, 138, 0.12);
  color: #ffe1e1;
}

.contact-line {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-line:hover {
  transform: translateY(-3px);
  border-color: rgba(97, 227, 238, 0.42);
  background: rgba(97, 227, 238, 0.08);
}

.contact-line strong {
  color: #ffffff;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 34px 0;
  color: #ffffff;
  background: #05070d;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand.compact .brand-mark {
  width: 32px;
  height: 36px;
}

.footer-inner p {
  color: var(--muted-dark);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted-dark);
  font-size: 14px;
  font-weight: 760;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 210;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(7, 11, 18, 0.88);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(12px);
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.back-to-top:hover {
  border-color: rgba(97, 227, 238, 0.55);
  background: rgba(97, 227, 238, 0.16);
}

.back-to-top span {
  width: 16px;
  height: 16px;
  border-top: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  transform: translateY(4px) rotate(45deg);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

@media (max-width: 1120px) {
  .primary-nav {
    gap: 2px;
  }

  .primary-nav a {
    padding-inline: 9px;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 38px;
  }

  .service-grid,
  .support-grid,
  .package-grid,
  .usecase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav-shell {
    width: min(calc(100% - 24px), 1280px);
  }

  .menu-toggle {
    display: none;
  }

  body.nav-ready .menu-toggle {
    display: inline-flex;
  }

  body.nav-ready .primary-nav {
    position: fixed;
    top: calc(var(--header-height) + 12px);
    left: 14px;
    right: 14px;
    z-index: 260;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(7, 11, 18, 0.98);
    box-shadow: var(--shadow-dark);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.nav-ready.menu-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.nav-ready .primary-nav a {
    justify-content: space-between;
    min-height: 48px;
    padding: 12px 13px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.045);
    color: #ffffff;
    white-space: normal;
  }

  body.nav-ready .primary-nav .nav-contact {
    margin-left: 0;
    border-color: rgba(97, 227, 238, 0.42);
  }

  body.nav-ready .lang-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-left: 0;
  }

  body.nav-ready .lang-switch a {
    justify-content: center;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 0 48px;
  }

  .hero-media {
    background-position: 60% center;
  }

  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-panel {
    align-self: stretch;
  }

  .section {
    padding: 76px 0;
  }

  .two-column,
  .dashboard-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .dashboard-layout .ops-dashboard {
    order: 2;
  }

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

  .cred-image {
    min-height: 320px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-mark {
    width: 32px;
    height: 36px;
  }

  .hero-inner {
    padding: 42px 0 36px;
  }

  h1 {
    font-size: 37px;
    line-height: 1.08;
  }

  h2 {
    font-size: 30px;
    line-height: 1.1;
  }

  h3 {
    font-size: 19px;
  }

  .hero-lead,
  .section-copy p,
  .section-header p,
  .contact-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .inline-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-panel {
    display: none;
  }

  .btn {
    width: 100%;
  }

  .panel-grid,
  .workflow-map,
  .mini-grid,
  .process-grid,
  .service-grid,
  .support-grid,
  .package-grid,
  .usecase-grid {
    grid-template-columns: 1fr;
  }

  .market-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .issue-row {
    grid-template-columns: 1fr;
  }

  .service-card,
  .support-card,
  .package-card,
  .usecase-card,
  .process-step {
    min-height: auto;
  }

  .section {
    padding: 64px 0;
  }

  .contact-line strong {
    font-size: 16px;
  }

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

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
  }
}

/* Website offer pages */
.service-card-featured {
  grid-column: span 2;
  border-color: rgba(97, 227, 238, 0.38);
  background:
    linear-gradient(135deg, rgba(97, 227, 238, 0.16), transparent 48%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    var(--card);
}

.service-card-featured .package-link {
  margin-top: auto;
}

.service-card-product {
  border-color: rgba(112, 228, 179, 0.42);
  background:
    linear-gradient(135deg, rgba(112, 228, 179, 0.18), transparent 50%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    var(--card);
}

.offer-page .hero-inner {
  min-height: 570px;
}

.offer-page .hero-copy h1 {
  font-size: 58px;
}

.offer-page .hero-panel {
  align-self: center;
}

.offer-summary {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.offer-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-dark);
}

.offer-summary div:last-child {
  border-bottom: 0;
}

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

.offer-summary strong {
  color: #ffffff;
  text-align: right;
}

.project-notice {
  padding: 16px 18px;
  border: 1px solid rgba(97, 227, 238, 0.36);
  border-radius: var(--radius);
  color: #dce5f2;
  background: rgba(97, 227, 238, 0.09);
}

.project-notice[hidden] {
  display: none;
}

.project-notice strong {
  color: var(--cyan);
}

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

.offer-card {
  min-height: 100%;
}

.offer-card > p {
  margin-top: 0;
}

.offer-card.recommended {
  border-color: rgba(97, 227, 238, 0.52);
  background:
    linear-gradient(150deg, rgba(97, 227, 238, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
}

.offer-price {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  color: #ffffff;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.offer-price small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
}

.offer-price-monthly {
  color: var(--cyan);
  font-size: 46px;
}

.offer-price-monthly small {
  color: #dce5f2;
  font-size: 14px;
}

.offer-price-setup {
  margin-top: -8px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
}

.offer-price-setup small {
  font-size: 12px;
}

.package-term {
  position: relative;
  z-index: 1;
  margin-top: 2px !important;
  color: var(--muted) !important;
  font-size: 12px !important;
  font-weight: 750;
}

.feature-list {
  position: relative;
  z-index: 1;
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

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

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  box-shadow: 0 0 0 4px rgba(97, 227, 238, 0.08);
}

.offer-card .btn {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.pricing-note {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 14px;
}

.pricing-note strong {
  color: var(--ink);
}

.starter-bonus {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(112, 228, 179, 0.38);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(112, 228, 179, 0.13), transparent 42%),
    linear-gradient(225deg, rgba(97, 227, 238, 0.1), transparent 46%),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow-soft);
}

.starter-bonus h3 {
  margin-top: 14px;
  font-size: 30px;
}

.starter-bonus p {
  margin-top: 12px;
}

.bonus-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0;
  padding: 0;
}

.bonus-list li {
  position: relative;
  padding: 12px 12px 12px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #dce5f2;
  background: rgba(255, 255, 255, 0.045);
  font-size: 14px;
  font-weight: 750;
}

.bonus-list li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(112, 228, 179, 0.09);
}

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

.benefit-card,
.faq-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    var(--card);
}

.benefit-card h3,
.faq-item h3 {
  margin-bottom: 12px;
}

.benefit-card p,
.faq-item p {
  color: var(--muted);
}

.offer-contact-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.offer-contact-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dce5f2;
}

.offer-contact-points span::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(112, 228, 179, 0.09);
}

.fine-print {
  color: var(--muted);
  font-size: 13px;
}

.legal-hero {
  padding: 78px 0 56px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(97, 227, 238, 0.09), transparent 42%),
    var(--night);
}

.legal-hero h1 {
  max-width: 900px;
  font-size: 54px;
}

.legal-content {
  width: min(calc(100% - 40px), 900px);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.legal-block {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    var(--card);
}

.legal-block h2 {
  margin-bottom: 14px;
  font-size: 28px;
}

.legal-block h3 {
  margin: 20px 0 10px;
  font-size: 19px;
}

.legal-block p + p,
.legal-block ul + p {
  margin-top: 12px;
}

.legal-block ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.legal-block a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Invoicing app product pages */
.app-page .hero-inner {
  min-height: 620px;
}

.app-page .hero-copy h1 {
  font-size: 60px;
}

.app-preview {
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(112, 228, 179, 0.34);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(8, 13, 21, 0.9);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42), 0 0 50px rgba(112, 228, 179, 0.08);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
}

.app-preview-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
}

.app-preview-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
}

.app-preview-bar span:first-child {
  background: var(--mint);
}

.app-preview-bar strong {
  margin-left: auto;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.app-preview-body {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  min-height: 350px;
}

.app-preview-nav {
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 18px 10px;
  border-right: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.025);
}

.app-preview-nav span {
  padding: 9px 8px;
  border-radius: 8px;
  color: var(--muted-dark);
  font-size: 11px;
  font-weight: 750;
}

.app-preview-nav .active {
  color: var(--mint);
  background: rgba(112, 228, 179, 0.1);
}

.app-preview-main {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.app-preview-main > p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
}

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

.app-kpis div,
.app-tax-row {
  padding: 12px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.app-kpis span,
.app-tax-row span {
  display: block;
  color: var(--muted-dark);
  font-size: 9px;
}

.app-kpis strong {
  display: block;
  margin-top: 5px;
  color: #ffffff;
  font-size: 13px;
}

.app-chart {
  display: flex;
  align-items: end;
  gap: 7px;
  min-height: 122px;
  padding: 16px 14px 0;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 100% 25%,
    rgba(255, 255, 255, 0.025);
}

.app-chart i {
  width: 100%;
  min-height: 20px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--mint), rgba(97, 227, 238, 0.3));
  box-shadow: 0 0 14px rgba(112, 228, 179, 0.12);
}

.app-tax-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.app-tax-row strong {
  color: var(--mint);
  font-size: 10px;
}

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

.app-feature-grid .benefit-card > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.app-capability-bonus {
  margin-top: 22px;
}

.tax-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: stretch;
}

.tax-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border: 1px solid rgba(112, 228, 179, 0.35);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(112, 228, 179, 0.13), transparent 58%),
    var(--card);
}

.tax-feature-copy h3 {
  margin-top: 18px;
  font-size: 34px;
}

.tax-feature-copy p {
  margin: 16px 0 24px;
  color: var(--muted);
}

.tax-feature-copy .btn {
  align-self: flex-start;
}

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

.tax-module-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    var(--card);
}

.tax-module-grid span {
  color: var(--mint);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.tax-module-grid h3 {
  margin: 14px 0 10px;
  font-size: 21px;
}

.tax-module-grid p {
  color: var(--muted);
  font-size: 14px;
}

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

  .offer-page .hero-copy h1 {
    font-size: 52px;
  }

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

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

@media (max-width: 900px) {
  .service-card-featured {
    grid-column: span 2;
  }

  .offer-page .hero-copy h1 {
    font-size: 44px;
  }

  .starter-bonus {
    grid-template-columns: 1fr;
  }

  .app-preview {
    display: none;
  }

  .app-page .hero-copy h1 {
    font-size: 46px;
  }
}

@media (max-width: 620px) {
  .service-card-featured {
    grid-column: span 1;
  }

  .offer-page .hero-copy h1 {
    font-size: 36px;
  }

  .benefit-grid,
  .faq-grid,
  .bonus-list,
  .app-feature-grid,
  .tax-module-grid {
    grid-template-columns: 1fr;
  }

  .offer-price {
    font-size: 34px;
  }

  .offer-price-monthly {
    font-size: 42px;
  }

  .legal-hero h1 {
    font-size: 36px;
  }

  .legal-content {
    width: min(calc(100% - 24px), 900px);
  }

  .legal-block {
    padding: 18px;
  }
}
