:root {
  --ink: #08111f;
  --ink-2: #0f1b2e;
  --paper: #ffffff;
  --paper-soft: #f5f8fb;
  --line: rgba(8, 17, 31, 0.12);
  --muted: #61708a;
  --teal: #17b8b2;
  --teal-dark: #0e817e;
  --amber: #f0a329;
  --blue: #477cff;
  --rose: #d85c8b;
  --green: #3bb273;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(8, 17, 31, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
}

main {
  display: flex;
  flex-direction: column;
}

main > section {
  order: 10;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #eef8ff;
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header[data-elevated="true"] {
  padding-block: 12px;
  background: rgba(8, 17, 31, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark,
.brand-logo {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), var(--amber));
  color: #07101d;
  font-weight: 900;
  box-shadow: 0 12px 40px rgba(23, 184, 178, 0.35);
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  background: none;
  box-shadow: 0 12px 40px rgba(23, 184, 178, 0.22);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: rgba(238, 248, 255, 0.68);
  font-size: 0.72rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 24px);
  color: rgba(238, 248, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 650;
}

.main-nav a {
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: #ffffff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #ffffff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  order: 1;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.54fr);
  align-items: center;
  min-height: auto;
  padding: 84px clamp(18px, 4vw, 56px) 24px;
  overflow: hidden;
  color: #edf8ff;
  background:
    radial-gradient(circle at 22% 18%, rgba(23, 184, 178, 0.24), transparent 30%),
    linear-gradient(135deg, #08111f 0%, #101c2d 58%, #122038 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media img {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(78vw, 1120px);
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.78;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.25) 24%, #000 52%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 26vh;
  background: linear-gradient(0deg, rgba(8, 17, 31, 0.9), transparent);
  pointer-events: none;
}

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

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.7rem, 4.8vw, 4.35rem);
  line-height: 0.96;
  font-weight: 850;
  letter-spacing: 0;
}

.hero p {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(237, 248, 255, 0.76);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.58;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 760;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button.primary {
  background: #ffffff;
  color: #07101d;
  box-shadow: 0 16px 50px rgba(255, 255, 255, 0.12);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.button.light {
  color: #07101d;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(255, 255, 255, 0.14);
}

.button.ghost-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.button.dark {
  flex: 0 0 auto;
  color: #ffffff;
  background: var(--ink);
  box-shadow: 0 16px 42px rgba(8, 17, 31, 0.18);
}

.hero-metrics {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin: 28px 0 0;
}

.hero-metrics div {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-metrics dt {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 850;
}

.hero-metrics dd {
  margin: 6px 0 0;
  color: rgba(237, 248, 255, 0.64);
  font-size: 0.9rem;
}

.hero-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  justify-self: end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(6, 16, 30, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(237, 248, 255, 0.7);
  font-size: 0.82rem;
}

.panel-topline strong {
  color: #ffffff;
}

.stack-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.stack-preview span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: rgba(237, 248, 255, 0.78);
}

.panel-progress {
  height: 8px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.panel-progress span {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--amber));
}

.launch-board {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.launch-board div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 4px 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.launch-board span {
  grid-row: span 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: #07101d;
  background: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
}

.launch-board strong,
.launch-board small {
  display: block;
}

.launch-board strong {
  color: #ffffff;
  font-size: 0.92rem;
}

.launch-board small {
  color: rgba(237, 248, 255, 0.62);
}

.hero-panel p {
  margin-top: 18px;
  font-size: 0.92rem;
  line-height: 1.62;
}

.proof-strip {
  order: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.proof-strip div {
  padding: 22px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-size: 1.02rem;
}

.proof-strip span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.stack-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: #0b1423;
}

.stack-rail span {
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(237, 248, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 780;
}

.company-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: #ffffff;
}

.company-copy > p {
  max-width: 780px;
  margin-top: 22px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.mission-grid article,
.values-grid article,
.news-grid article,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 48px rgba(8, 17, 31, 0.06);
}

.mission-grid article {
  min-height: 260px;
  padding: 22px;
}

.mission-grid span,
.legal-card > span,
.news-grid span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mission-grid strong {
  display: block;
  margin-top: 54px;
  font-size: 1.16rem;
  line-height: 1.15;
}

.mission-grid p,
.values-grid p,
.news-grid p,
.legal-card p {
  margin-bottom: 0;
}

.company-proof-card {
  overflow: hidden;
  border: 1px solid rgba(8, 17, 31, 0.12);
  border-radius: 8px;
  background: #07101d;
  box-shadow: var(--shadow);
}

.company-proof-card img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.achievement-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.achievement-list div {
  padding: 18px;
  color: #edf8ff;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.achievement-list div:last-child {
  border-right: 0;
}

.achievement-list strong,
.achievement-list span {
  display: block;
}

.achievement-list strong {
  color: #ffffff;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.achievement-list span {
  margin-top: 4px;
  color: rgba(237, 248, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.35;
}

.values-section {
  background: var(--paper-soft);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.values-grid article {
  min-height: 220px;
  padding: 22px;
}

.values-grid strong {
  display: block;
  margin-top: 76px;
  color: var(--ink);
  font-size: 1.12rem;
}

.section {
  padding: 72px clamp(18px, 4vw, 56px);
  scroll-margin-top: 92px;
}

.proof-strip,
.project-proof,
.stack-rail {
  scroll-margin-top: 92px;
}

.section h2 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
}

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  min-width: 0;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 720px;
  margin: 18px 0 0;
}

.section-head.narrow {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  align-items: stretch;
  background: var(--paper-soft);
}

.intro .section-copy {
  align-self: start;
}

.section-copy p {
  max-width: 660px;
  margin-top: 24px;
}

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

.capability-grid article,
.demo-card,
.offer-card,
.case-card,
.automation-tool,
.timeline article,
.faq-list details,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 48px rgba(8, 17, 31, 0.06);
}

.capability-grid article {
  min-height: 260px;
  padding: 22px;
}

.section-visual,
.automation-visual,
.process-visual,
.trust-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 17, 31, 0.12);
  border-radius: 8px;
  background: #07101d;
  box-shadow: 0 24px 70px rgba(8, 17, 31, 0.13);
}

.section-visual img,
.automation-visual img,
.process-visual img,
.trust-visual img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
}

.section-visual figcaption,
.automation-visual figcaption,
.process-visual figcaption,
.trust-visual figcaption {
  position: absolute;
  inset: auto 16px 16px 16px;
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(5, 13, 25, 0.78);
  backdrop-filter: blur(16px);
}

.section-visual figcaption strong,
.automation-visual figcaption strong,
.process-visual figcaption strong,
.trust-visual figcaption strong {
  font-size: 0.96rem;
}

.section-visual figcaption span,
.automation-visual figcaption span,
.process-visual figcaption span,
.trust-visual figcaption span {
  color: rgba(237, 248, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.45;
}

.intro-visual {
  align-self: end;
}

.cap-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: #e8fbfa;
  color: var(--teal-dark);
}

.cap-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-grid h3 {
  margin: 48px 0 0;
  font-size: 1.25rem;
}

.services {
  order: 5;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.compact-section {
  padding-block: 58px;
}

.compact-head {
  margin-bottom: 22px;
}

.compact-head h2 {
  font-size: clamp(2rem, 3.4vw, 3.35rem);
}

.compact-offers .offer-card {
  min-height: 326px;
  padding: 18px;
}

.compact-offers .offer-card h3 {
  margin-top: 20px;
}

.compact-offers .offer-card p {
  margin-bottom: 0;
}

.compact-timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}

.compact-timeline article {
  min-height: 190px;
}

.compact-timeline h3 {
  margin-top: 34px;
}

.compact-faq {
  max-width: none;
  margin-top: 0;
}

.service-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 0;
  min-height: 360px;
  margin: 0 0 22px;
  overflow: hidden;
  border: 1px solid rgba(8, 17, 31, 0.12);
  border-radius: 8px;
  color: #edf8ff;
  background:
    radial-gradient(circle at 92% 8%, rgba(240, 163, 41, 0.2), transparent 28%),
    linear-gradient(135deg, #08111f 0%, #132138 100%);
  box-shadow: 0 24px 70px rgba(8, 17, 31, 0.12);
}

.service-showcase img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.service-showcase > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 46px);
}

.service-showcase span {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-showcase h3 {
  margin: 16px 0 0;
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 3.15rem);
  line-height: 1;
}

.service-showcase p {
  margin: 18px 0 0;
  color: rgba(237, 248, 255, 0.72);
}

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

.offer-card {
  position: relative;
  display: flex;
  min-height: 420px;
  overflow: hidden;
  flex-direction: column;
  padding: 24px;
}

.offer-card.featured {
  color: #edf8ff;
  background:
    linear-gradient(150deg, rgba(23, 184, 178, 0.22), transparent 38%),
    linear-gradient(135deg, #08111f 0%, #17253d 100%);
  border-color: rgba(23, 184, 178, 0.28);
  box-shadow: 0 24px 70px rgba(8, 17, 31, 0.2);
}

.offer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.offer-kicker {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: #07101d;
  background: #e8fbfa;
  font-weight: 900;
}

.offer-label {
  padding: 8px 10px;
  border: 1px solid rgba(8, 17, 31, 0.09);
  border-radius: 8px;
  color: #24569d;
  background: #edf4ff;
  font-size: 0.74rem;
  font-weight: 850;
}

.offer-card.featured .offer-kicker {
  background: var(--amber);
}

.offer-card.featured .offer-label {
  color: #07101d;
  background: #a9f3e9;
  border-color: rgba(255, 255, 255, 0.18);
}

.offer-icon {
  display: grid;
  min-height: 92px;
  margin-top: 18px;
  place-items: center;
  border: 1px solid rgba(8, 17, 31, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 184, 178, 0.12), rgba(71, 124, 255, 0.09)),
    #f8fbff;
}

.offer-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offer-card.featured .offer-icon {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(23, 184, 178, 0.26), rgba(240, 163, 41, 0.16)),
    rgba(255, 255, 255, 0.06);
}

.offer-card.featured .offer-icon svg {
  stroke: #ffffff;
}

.offer-card h3 {
  margin: 46px 0 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
}

.offer-card p {
  margin-top: 14px;
}

.offer-card.featured p,
.offer-card.featured li,
.offer-card.featured strong {
  color: rgba(237, 248, 255, 0.78);
}

.offer-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.55;
}

.offer-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--teal);
}

.offer-card strong {
  display: block;
  margin-top: auto;
  padding-top: 22px;
  color: var(--ink);
  line-height: 1.45;
}

.featured-work {
  background: var(--paper-soft);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.case-card {
  overflow: hidden;
}

.case-card h3,
.case-card p,
.case-metrics {
  margin-inline: 18px;
}

.case-card h3 {
  margin-top: 18px;
  margin-bottom: 0;
  font-size: 1.14rem;
}

.case-card p {
  margin-top: 10px;
  font-size: 0.92rem;
}

.case-visual {
  min-height: 188px;
  padding: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #273449);
}

.case-visual.health {
  background: linear-gradient(135deg, #0b2532, #11726f);
}

.case-visual.commerce {
  background: linear-gradient(135deg, #1f250f, #a86913);
}

.case-visual.service {
  background: linear-gradient(135deg, #21162e, #923f67);
}

.case-visual.b2b {
  background: linear-gradient(135deg, #111827, #29624a);
}

.case-visual span,
.case-visual strong {
  display: block;
}

.case-visual span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.case-visual strong {
  max-width: 210px;
  margin-top: 34px;
  font-size: 1.35rem;
  line-height: 1.05;
}

.case-visual div {
  display: grid;
  grid-template-columns: 1fr 0.76fr 0.48fr;
  gap: 8px;
  margin-top: 26px;
}

.case-visual i {
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.case-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.case-metrics span {
  padding: 6px 8px;
  border-radius: 8px;
  color: #25529f;
  background: #edf4ff;
  font-size: 0.72rem;
  font-weight: 800;
}

.demos-section {
  order: 2;
  padding-top: 56px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.demos-section .section-head {
  margin-bottom: 20px;
}

.project-proof {
  order: 3;
  padding-block: 46px;
  background: #ffffff;
  border-top: 1px solid rgba(8, 17, 31, 0.06);
  border-bottom: 1px solid rgba(8, 17, 31, 0.08);
}

.project-head {
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.project-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.25rem);
}

.project-controls {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.slide-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(8, 17, 31, 0.06);
}

.slide-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.slide-button:hover {
  color: #ffffff;
  background: var(--ink);
}

.project-slider {
  position: relative;
  overflow: hidden;
}

.project-track {
  display: flex;
  gap: 12px;
  min-width: 0;
  padding: 2px 2px 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

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

.project-logo-card {
  flex: 0 0 clamp(218px, 23vw, 286px);
  min-height: 164px;
  padding: 10px;
  scroll-snap-align: start;
  border: 1px solid rgba(8, 17, 31, 0.11);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(8, 17, 31, 0.06);
}

.project-visual {
  position: relative;
  height: 86px;
  margin: 0 0 12px;
  overflow: hidden;
  border-radius: 8px;
  background: #eef4fb;
}

.project-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  filter: saturate(1.14) contrast(1.04) brightness(1.08);
}

.project-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.1), rgba(8, 17, 31, 0.02) 54%),
    linear-gradient(180deg, rgba(8, 17, 31, 0), rgba(8, 17, 31, 0.2));
}

.brand-visual {
  display: flex;
  align-items: end;
  gap: 6px;
  padding: 12px;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.38), transparent 28%),
    linear-gradient(135deg, #15243a, #256d6b);
}

.brand-visual i {
  position: relative;
  z-index: 1;
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 850;
}

.brand-badge {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  display: inline-grid;
  min-width: 34px;
  height: 34px;
  place-items: center;
  padding-inline: 8px;
  border-radius: 8px;
  color: #06111f;
  background: #a9f3e9;
  box-shadow: 0 10px 24px rgba(8, 17, 31, 0.2);
  font-size: 0.72rem;
  font-weight: 900;
}

.project-logo-card strong,
.project-logo-card small {
  display: block;
  margin-inline: 8px;
}

.project-logo-card strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.18;
}

.project-logo-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
  line-height: 1.2;
}

.featured-project {
  background: #ffffff;
}

.project-radar .project-visual {
  background: #d9e7ef;
}

.project-radar .project-visual img {
  object-position: 46% 42%;
}

.project-data .brand-visual {
  background:
    radial-gradient(circle at 78% 22%, rgba(23, 184, 178, 0.42), transparent 30%),
    linear-gradient(135deg, #16283e, #477cff);
}

.project-invest .project-visual img {
  object-position: 58% 50%;
}

.project-websites .project-visual img {
  object-position: 62% 50%;
}

.project-numerology .brand-visual {
  background:
    radial-gradient(circle at 78% 22%, rgba(240, 163, 41, 0.42), transparent 28%),
    linear-gradient(135deg, #2a1744, #d85c8b);
}

.project-tuvi .brand-visual {
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.35), transparent 26%),
    linear-gradient(135deg, #111827, #477cff);
}

.project-reader .brand-visual {
  background:
    radial-gradient(circle at 78% 22%, rgba(23, 184, 178, 0.44), transparent 30%),
    linear-gradient(135deg, #243b2e, #0e817e);
}

.project-websites .brand-badge {
  background: #f8d482;
}

.search-box {
  position: relative;
  flex: 0 0 min(100%, 370px);
}

.search-box svg {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 2;
  transform: translateY(-50%);
}

.search-box input {
  width: 100%;
  height: 48px;
  padding: 0 16px 0 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  outline: none;
  background: #ffffff;
}

.search-box input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(23, 184, 178, 0.12);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.filter {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--muted);
  font-weight: 700;
}

.filter.active {
  border-color: var(--ink);
  color: #ffffff;
  background: var(--ink);
}

.demo-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  color: var(--muted);
}

.demo-stats strong {
  color: var(--ink);
}

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

.demo-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.demo-toggle-wrap [hidden] {
  display: none;
}

.demo-card {
  display: flex;
  min-height: 0;
  overflow: hidden;
  flex-direction: column;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.demo-card:hover {
  border-color: rgba(23, 184, 178, 0.48);
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(8, 17, 31, 0.12);
}

.demo-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: grid;
  place-items: stretch;
  padding: 0;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.2), transparent 32%),
    linear-gradient(135deg, #0d182a, #15233a);
}

.demo-image::before,
.demo-image::after {
  content: "";
  position: absolute;
  inset: 0;
}

.demo-image::before {
  background-image:
    linear-gradient(180deg, rgba(8, 17, 31, 0.02), rgba(8, 17, 31, 0.42)),
    var(--demo-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform 220ms ease, filter 220ms ease;
}

.demo-image::after {
  background:
    linear-gradient(180deg, rgba(8, 17, 31, 0) 42%, rgba(8, 17, 31, 0.76) 100%),
    linear-gradient(135deg, rgba(8, 17, 31, 0.02), rgba(8, 17, 31, 0.18)),
    radial-gradient(circle at 84% 16%, color-mix(in srgb, var(--teal) 18%, transparent), transparent 34%);
}

.demo-card:hover .demo-image::before {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.07);
}

.demo-health {
  background:
    radial-gradient(circle at 24% 18%, rgba(23, 184, 178, 0.32), transparent 34%),
    linear-gradient(135deg, #0b2532, #123c45);
}

.demo-service {
  background:
    radial-gradient(circle at 78% 14%, rgba(216, 92, 139, 0.3), transparent 32%),
    linear-gradient(135deg, #201429, #351d3f);
}

.demo-commerce {
  background:
    radial-gradient(circle at 70% 12%, rgba(240, 163, 41, 0.34), transparent 34%),
    linear-gradient(135deg, #18210f, #263414);
}

.demo-education {
  background:
    radial-gradient(circle at 24% 18%, rgba(71, 124, 255, 0.32), transparent 34%),
    linear-gradient(135deg, #102042, #1b3163);
}

.demo-b2b {
  background:
    radial-gradient(circle at 76% 18%, rgba(59, 178, 115, 0.26), transparent 34%),
    linear-gradient(135deg, #111827, #243142);
}

.demo-image-caption {
  position: absolute;
  inset: auto 12px 12px 12px;
  z-index: 1;
  display: grid;
  gap: 4px;
  max-width: calc(100% - 96px);
  color: #ffffff;
}

.demo-image-caption strong,
.demo-image-caption span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-image-caption strong {
  font-size: 1rem;
  line-height: 1.15;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.34);
}

.demo-image-caption span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 720;
}

.preview-browser {
  position: relative;
  z-index: 1;
  width: min(100%, 286px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  transform: translateY(10px);
}

.preview-top {
  display: flex;
  gap: 5px;
  align-items: center;
  height: 22px;
  padding: 0 9px;
  background: #edf2f7;
}

.preview-top span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #94a3b8;
}

.preview-shell {
  display: grid;
  grid-template-columns: 56px 1fr;
  min-height: 150px;
}

.preview-side {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 14px 10px;
  background: #111827;
}

.preview-side i {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.preview-side i:first-child {
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), var(--amber));
}

.preview-main {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
}

.preview-hero {
  display: grid;
  gap: 6px;
  min-height: 64px;
  padding: 12px;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.86), rgba(8, 17, 31, 0.28)),
    linear-gradient(135deg, var(--teal), var(--blue));
}

.preview-hero strong {
  display: block;
  overflow: hidden;
  font-size: 0.78rem;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-hero em {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-style: normal;
}

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

.preview-modules span {
  min-height: 26px;
  padding: 6px;
  border-radius: 6px;
  color: #334155;
  background: #eef4fb;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-group {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  padding: 6px 8px;
  border-radius: 8px;
  color: #ffffff;
  background: rgba(8, 17, 31, 0.76);
  font-size: 0.75rem;
  font-weight: 760;
}

.demo-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px;
}

.demo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.demo-meta span {
  padding: 6px 8px;
  border-radius: 8px;
  color: #36516f;
  background: #f0f4f9;
  font-size: 0.7rem;
  font-weight: 850;
}

.demo-body h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.25;
}

.demo-type {
  display: block;
  margin-top: 6px;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 850;
}

.demo-body p {
  margin: 10px 0 0;
  font-size: 0.92rem;
}

.demos-section .demo-body p,
.demos-section .module-tags {
  display: none;
}

.module-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.module-tags span {
  padding: 6px 8px;
  border-radius: 8px;
  background: #edf4ff;
  color: #25529f;
  font-size: 0.72rem;
  font-weight: 760;
}

.demo-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
}

.text-button,
.mini-button {
  border: 0;
  background: transparent;
  color: var(--teal-dark);
  font-weight: 800;
}

.mini-button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
}

.mini-button.demo-primary {
  border-color: var(--ink);
  color: #ffffff;
  background: var(--ink);
}

.automation {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 22px clamp(26px, 5vw, 72px);
  align-items: start;
  color: #edf8ff;
  background:
    radial-gradient(circle at 88% 14%, rgba(240, 163, 41, 0.22), transparent 26%),
    linear-gradient(135deg, #08111f 0%, #111d32 100%);
}

.automation-copy {
  grid-row: span 2;
}

.automation-visual {
  min-height: 270px;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.26);
}

.automation-visual img {
  min-height: 270px;
}

.automation h2,
.automation h3 {
  color: #ffffff;
}

.automation p,
.automation label,
.automation .check-list {
  color: rgba(237, 248, 255, 0.72);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.58;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(23, 184, 178, 0.16);
}

.automation-tool {
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

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

.tool-head h3 {
  margin: 0;
}

.tool-head span {
  padding: 7px 10px;
  border-radius: 8px;
  color: #07101d;
  background: var(--amber);
  font-size: 0.8rem;
  font-weight: 850;
}

.automation-tool label {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  font-size: 0.9rem;
  font-weight: 720;
}

.automation-tool input[type="range"] {
  width: 100%;
  accent-color: var(--teal);
}

.automation-tool output {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 850;
}

.estimate-result {
  margin-top: 24px;
  padding: 18px;
  border-radius: 8px;
  background: #ffffff;
}

.estimate-result span,
.estimate-result p {
  color: var(--muted);
}

.estimate-result strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.process {
  color: #edf8ff;
  background:
    linear-gradient(135deg, rgba(23, 184, 178, 0.14), transparent 34%),
    linear-gradient(180deg, #07101d 0%, #0f1b2e 100%);
}

.process .section-head h2 {
  color: #ffffff;
}

.process .section-head p {
  color: rgba(237, 248, 255, 0.72);
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.process-flow::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  opacity: 0.72;
}

.process-step {
  position: relative;
  min-height: 236px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.18);
}

.step-number {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: #07101d;
  background: #a9f3e9;
  font-weight: 900;
}

.step-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-top: 30px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.step-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step h3 {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: 1.12rem;
}

.process-step p {
  margin: 10px 0 0;
  color: rgba(237, 248, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.6;
}

.process-step small {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 9px;
  border-radius: 8px;
  color: #07101d;
  background: #f8d482;
  font-size: 0.72rem;
  font-weight: 850;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.timeline article {
  padding: 22px;
  min-height: 260px;
}

.timeline span {
  color: var(--teal-dark);
  font-weight: 900;
}

.timeline h3 {
  margin: 68px 0 0;
  font-size: 1.18rem;
}

.process-visual {
  margin-top: 18px;
}

.process-visual img {
  min-height: 330px;
  aspect-ratio: 16 / 6;
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 42px;
}

.trust-visual {
  margin-top: 28px;
}

.trust-visual img {
  min-height: 310px;
}

.trust-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.trust-list div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.trust-list strong {
  font-size: 1rem;
}

.trust-list span {
  color: var(--muted);
  line-height: 1.6;
}

.faq {
  background: #fbfcfe;
}

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

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

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 820;
}

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

.news-events {
  background: #ffffff;
}

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

.news-grid article {
  min-height: 330px;
  padding: 24px;
}

.news-grid h3 {
  margin: 76px 0 0;
  color: var(--ink);
  font-size: clamp(1.3rem, 2vw, 1.72rem);
  line-height: 1.08;
}

.news-grid time {
  display: inline-flex;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 720;
}

.legal-compliance {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  color: #edf8ff;
  background:
    radial-gradient(circle at 84% 16%, rgba(23, 184, 178, 0.18), transparent 28%),
    linear-gradient(135deg, #08111f 0%, #121f35 100%);
}

.legal-compliance h2 {
  color: #ffffff;
}

.legal-compliance p {
  color: rgba(237, 248, 255, 0.72);
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.legal-grid {
  display: grid;
  gap: 14px;
}

.legal-card {
  padding: 22px;
  color: #edf8ff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.legal-card strong {
  display: block;
  margin-top: 18px;
  color: #ffffff;
  font-size: 1.28rem;
}

.bct-placeholder {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #07101d;
  background: linear-gradient(135deg, #ffffff 0%, #e8fbfa 100%);
}

.bct-placeholder strong {
  margin: 0;
  color: var(--ink);
}

.bct-placeholder small {
  color: var(--muted);
  line-height: 1.45;
}

.legal-page-shell {
  min-height: 100vh;
  color: var(--ink);
  background: #f7fafc;
}

.legal-page-header,
.legal-page-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px clamp(18px, 4vw, 56px);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.legal-page-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 860;
}

.legal-page-brand img {
  width: 38px;
  height: 38px;
}

.legal-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.legal-page-nav a,
.legal-page-footer a {
  color: var(--teal-dark);
  font-weight: 760;
}

.legal-page-main {
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(40px, 7vw, 86px) 0;
}

.legal-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.legal-page-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 7vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.legal-page-hero p {
  color: var(--muted);
}

.legal-page-meta {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(8, 17, 31, 0.06);
}

.legal-page-meta span,
.legal-page-meta strong {
  display: block;
}

.legal-page-meta span {
  color: var(--muted);
  font-size: 0.88rem;
}

.legal-page-content {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.legal-page-section {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(8, 17, 31, 0.05);
}

.legal-page-section h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.32rem, 2.4vw, 1.86rem);
}

.legal-page-section p,
.legal-page-section li {
  color: var(--muted);
  line-height: 1.72;
}

.legal-page-section ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.legal-page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: 42px;
  color: #edf8ff;
  background:
    radial-gradient(circle at 18% 20%, rgba(23, 184, 178, 0.24), transparent 28%),
    linear-gradient(135deg, #07101d 0%, #13223c 100%);
}

.contact p {
  color: rgba(237, 248, 255, 0.72);
}

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

.contact-details div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-details strong,
.contact-details a,
.contact-details span {
  display: block;
}

.contact-details strong {
  color: rgba(237, 248, 255, 0.68);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.contact-details a,
.contact-details span {
  margin-top: 8px;
  color: #ffffff;
  font-weight: 780;
  line-height: 1.35;
}

.map-preview {
  position: relative;
  min-height: 220px;
  margin-top: 14px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 72% 34%, rgba(23, 184, 178, 0.28), transparent 30%),
    rgba(255, 255, 255, 0.06);
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.map-preview::after {
  content: "";
  position: absolute;
  right: 52px;
  bottom: 42px;
  width: 26px;
  height: 26px;
  border-radius: 50% 50% 50% 0;
  background: var(--amber);
  transform: rotate(-45deg);
  box-shadow: 0 0 0 10px rgba(240, 163, 41, 0.16);
}

.map-preview span {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-preview strong {
  display: block;
  max-width: 420px;
  margin-top: 56px;
  color: #ffffff;
  font-size: 1.4rem;
}

.map-preview p {
  max-width: 520px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #1a2740;
  font-size: 0.86rem;
  font-weight: 780;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  outline: none;
  background: #ffffff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(23, 184, 178, 0.12);
}

.contact-form .button {
  width: 100%;
  color: #ffffff;
  background: var(--ink);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 760;
}

.demo-dialog {
  width: min(920px, calc(100vw - 28px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.34);
}

.demo-dialog::backdrop {
  background: rgba(8, 17, 31, 0.66);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: rgba(8, 17, 31, 0.62);
  font-size: 1.4rem;
}

.dialog-hero {
  position: relative;
  min-height: 260px;
  padding: 28px;
  display: flex;
  align-items: end;
  color: #ffffff;
  background: #07101d;
  overflow: hidden;
}

.dialog-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
}

.dialog-hero > div {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.dialog-hero h3 {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 1;
}

.dialog-content {
  display: grid;
  gap: 24px;
  padding: 24px;
}

.dialog-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.dialog-box {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-soft);
}

.dialog-box h4 {
  margin: 0 0 12px;
}

.path-copy,
.dialog-actions {
  display: flex;
  gap: 8px;
}

.path-copy code {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  padding: 11px 12px;
  border-radius: 8px;
  background: #eef3f9;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(320px, 1.2fr) minmax(160px, 0.42fr);
  gap: 28px;
  padding: 34px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #ffffff;
}

.site-footer strong,
.site-footer span,
.site-footer a {
  display: block;
}

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

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.footer-logo img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}

.footer-brand span,
.footer-legal span {
  margin-top: 7px;
  line-height: 1.45;
}

.footer-actions {
  display: grid;
  justify-content: end;
  gap: 8px;
}

.site-footer a {
  color: var(--teal-dark);
  font-weight: 760;
}

@media (max-width: 1180px) {
  .demo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .capability-grid,
  .offer-grid,
  .case-grid,
  .mission-grid,
  .values-grid,
  .news-grid,
  .process-flow,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-profile,
  .legal-compliance,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-actions {
    justify-content: start;
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    right: 18px;
    display: none;
    width: min(320px, calc(100vw - 36px));
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(8, 17, 31, 0.96);
    box-shadow: var(--shadow);
  }

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

  .nav-cta {
    justify-content: center;
  }

  .hero,
  .company-profile,
  .intro,
  .automation,
  .trust,
  .legal-compliance,
  .contact {
    grid-template-columns: 1fr;
  }

  .automation-copy,
  .intro-visual,
  .automation-visual,
  .automation-tool {
    grid-column: auto;
    grid-row: auto;
  }

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

  .service-showcase img {
    min-height: 280px;
    aspect-ratio: 16 / 9;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-media img {
    width: 100%;
    opacity: 0.28;
    mask-image: none;
  }

  .hero-panel {
    display: none;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-head {
    display: block;
  }

  .project-head {
    display: flex;
    align-items: center;
  }

  .section-head .button.dark {
    margin-top: 22px;
  }

  .search-box {
    margin-top: 22px;
  }

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

  .trust-list div,
  .dialog-columns {
    grid-template-columns: 1fr;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-inline: 18px;
    padding-bottom: 34px;
  }

  .hero-content,
  .hero-panel {
    width: 100%;
    max-width: 354px;
    min-width: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 11.4vw, 3.35rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .hero p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.54;
    overflow-wrap: anywhere;
  }

  .section h2,
  .section p,
  .filter {
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .demo-actions,
  .path-copy,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-metrics {
    display: none;
  }

  .hero-metrics,
  .capability-grid,
  .offer-grid,
  .case-grid,
  .mission-grid,
  .values-grid,
  .news-grid,
  .process-flow,
  .timeline,
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .process-flow::before {
    display: none;
  }

  .process-step {
    min-height: 0;
  }

  .step-icon {
    margin-top: 20px;
  }

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

  .project-proof {
    padding-block: 36px;
  }

  .project-controls {
    display: none;
  }

  .project-logo-card {
    flex-basis: 78vw;
    min-height: 156px;
  }

  .project-visual {
    height: 82px;
  }

  .demo-image {
    aspect-ratio: 4 / 3;
  }

  .demo-image-caption {
    max-width: calc(100% - 24px);
  }

  .demo-image-caption strong {
    font-size: 0.82rem;
  }

  .demo-image-caption span,
  .demo-group,
  .demo-meta,
  .demo-type,
  .demo-actions .mini-button:not(.demo-primary) {
    display: none;
  }

  .demo-body {
    padding: 10px;
  }

  .demo-body h3 {
    font-size: 0.94rem;
  }

  .demo-actions {
    padding-top: 10px;
  }

  .mini-button {
    width: 100%;
    min-height: 34px;
    padding-inline: 8px;
    font-size: 0.82rem;
  }

  .section {
    padding: 68px 18px;
  }

  .section-head > div,
  .search-box,
  .demo-stats {
    max-width: 354px;
  }

  .compact-section {
    padding-block: 48px;
  }

  .compact-offers .offer-card,
  .compact-timeline article {
    min-height: 0;
  }

  .section-visual img,
  .automation-visual img,
  .process-visual img,
  .trust-visual img {
    min-height: 250px;
  }

  .service-showcase > div {
    padding: 22px;
  }

  .demo-card {
    min-height: 0;
  }

  .dialog-content {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* KTC Digital 2026 polish layer */
:root {
  --studio-bg: #07111f;
  --studio-cyan: #38d7d1;
  --studio-gold: #ffd36e;
  --studio-line: rgba(255, 255, 255, 0.16);
  --studio-shadow: 0 28px 90px rgba(2, 8, 23, 0.3);
}

body {
  background:
    linear-gradient(rgba(8, 17, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 17, 31, 0.035) 1px, transparent 1px),
    #ffffff;
  background-size: 48px 48px, 48px 48px, auto;
}

.site-header {
  top: 14px;
  right: clamp(14px, 3vw, 36px);
  left: clamp(14px, 3vw, 36px);
  width: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.42);
  box-shadow: 0 18px 60px rgba(2, 8, 23, 0.18);
  backdrop-filter: blur(22px) saturate(1.25);
}

.site-header[data-elevated="true"] {
  padding-block: 12px;
  background: rgba(7, 17, 31, 0.84);
  box-shadow: 0 20px 70px rgba(2, 8, 23, 0.28);
}

.brand-logo {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.main-nav {
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.main-nav a {
  min-height: 34px;
  padding: 8px 11px;
  border-radius: 8px;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.main-nav .nav-cta {
  border-color: rgba(56, 215, 209, 0.42);
  background: rgba(56, 215, 209, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero {
  min-height: clamp(680px, 88vh, 860px);
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: clamp(26px, 4vw, 64px);
  padding-top: 128px;
  padding-bottom: 42px;
  background: linear-gradient(115deg, rgba(7, 17, 31, 1) 0%, rgba(8, 20, 36, 0.98) 48%, rgba(12, 31, 48, 0.94) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 31, 0.82), rgba(7, 17, 31, 0.28) 54%, rgba(7, 17, 31, 0.72));
  background-size: 44px 44px, 44px 44px, auto;
}

.hero-media img {
  width: min(74vw, 1120px);
  opacity: 0.54;
  filter: saturate(1.08) contrast(1.08);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.36) 28%, #000 60%, rgba(0, 0, 0, 0.5) 100%);
}

.hero h1 {
  max-width: 760px;
  text-wrap: balance;
}

.hero p {
  max-width: 610px;
  color: rgba(237, 248, 255, 0.78);
}

.hero-actions .button {
  min-height: 52px;
  border-radius: 8px;
}

.button.primary {
  background: linear-gradient(135deg, #ffffff, #dffcff);
  box-shadow:
    0 18px 54px rgba(56, 215, 209, 0.2),
    inset 0 -1px 0 rgba(8, 17, 31, 0.12);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
}

.button.dark,
.mini-button.demo-primary {
  background: linear-gradient(135deg, var(--studio-bg), #10283c);
  box-shadow: 0 18px 44px rgba(8, 17, 31, 0.2);
}

.studio-console {
  width: min(100%, 520px);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(7, 17, 31, 0.78);
  box-shadow:
    0 34px 110px rgba(2, 8, 23, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: perspective(1100px) rotateY(-4deg) rotateX(2deg);
}

.console-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(237, 248, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
}

.console-topbar strong {
  margin-left: 6px;
  font-size: 0.82rem;
}

.console-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
}

.console-dot:nth-child(1) {
  background: #ff7b7b;
}

.console-dot:nth-child(2) {
  background: var(--studio-gold);
}

.console-dot:nth-child(3) {
  background: var(--studio-cyan);
}

.console-screen {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.console-preview {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #09172a;
}

.console-preview img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  opacity: 0.92;
  filter: saturate(1.18) contrast(1.04);
}

.console-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.04), rgba(7, 17, 31, 0.72)),
    linear-gradient(90deg, rgba(7, 17, 31, 0.54), transparent 44%);
}

.preview-status {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  display: grid;
  min-width: 126px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(7, 17, 31, 0.72);
  backdrop-filter: blur(14px);
}

.preview-status span {
  color: rgba(237, 248, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 760;
}

.preview-status strong {
  margin-top: 3px;
  font-size: 1.62rem;
  line-height: 1;
}

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

.console-list div {
  min-height: 82px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.console-list span,
.console-list strong {
  display: block;
}

.console-list span {
  color: rgba(237, 248, 255, 0.64);
  font-size: 0.72rem;
  font-weight: 760;
}

.console-list strong {
  margin-top: 13px;
  color: #ffffff;
  font-size: 1rem;
}

.console-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 16px;
}

.console-footer span {
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(237, 248, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
}

.proof-strip {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.demos-section {
  padding-top: 64px;
  background:
    linear-gradient(rgba(8, 17, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 17, 31, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  background-size: 46px 46px, 46px 46px, auto;
}

.search-box input,
.filter,
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.filter {
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.filter:hover {
  transform: translateY(-1px);
  border-color: rgba(23, 184, 178, 0.38);
  color: var(--ink);
}

.filter.active {
  background: linear-gradient(135deg, var(--studio-bg), #14314a);
}

.demo-card {
  position: relative;
  border-color: rgba(8, 17, 31, 0.09);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(8, 17, 31, 0.08);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0);
  will-change: transform;
}

.demo-card:hover {
  border-color: rgba(56, 215, 209, 0.48);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-7px);
  box-shadow: 0 28px 84px rgba(8, 17, 31, 0.16);
}

.demo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: translateX(-80%);
  transition: opacity 180ms ease, transform 520ms ease;
}

.demo-card:hover::after {
  opacity: 1;
  transform: translateX(80%);
}

.demo-image {
  aspect-ratio: 16 / 11;
}

.demo-image::after {
  background:
    linear-gradient(180deg, rgba(8, 17, 31, 0) 36%, rgba(8, 17, 31, 0.82) 100%),
    linear-gradient(135deg, rgba(8, 17, 31, 0.04), rgba(8, 17, 31, 0.18));
}

.demo-meta span:last-child {
  color: #07635f;
  background: #dffcf8;
}

.demo-actions .mini-button {
  min-height: 38px;
}

.offer-card,
.project-logo-card,
.process-step,
.faq-list details,
.contact-form {
  border-color: rgba(8, 17, 31, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.offer-card:hover,
.project-logo-card:hover,
.process-step:hover,
.faq-list details:hover {
  border-color: rgba(23, 184, 178, 0.36);
  transform: translateY(-4px);
  box-shadow: 0 28px 78px rgba(8, 17, 31, 0.12);
}

.process {
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, #07111f, #102338 64%, #0d2027);
  background-size: 48px 48px, 48px 48px, auto;
}

.process-step {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.contact {
  background: linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(11, 32, 46, 0.94));
}

.contact-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
}

.map-preview {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.07);
  background-size: 28px 28px, 28px 28px, auto;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 980px) {
  .site-header {
    top: 10px;
    right: 12px;
    left: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 122px;
  }

  .studio-console {
    display: block;
    justify-self: stretch;
    width: min(100%, 620px);
    transform: none;
  }

}

@media (max-width: 620px) {
  .site-header {
    border-radius: 8px;
  }

  .main-nav {
    padding: 10px;
    background: rgba(7, 17, 31, 0.94);
  }

  .hero {
    min-height: auto;
  }

  .hero-panel.studio-console {
    display: block;
    max-width: 354px;
  }

  .console-topbar {
    min-height: 38px;
  }

  .console-screen {
    gap: 10px;
    padding: 10px;
  }

  .console-preview,
  .console-preview img {
    min-height: 142px;
  }

  .console-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .console-list {
    gap: 7px;
  }

  .console-list div {
    min-height: 54px;
    padding: 10px;
  }

  .console-list strong {
    margin-top: 5px;
  }

  .console-footer {
    padding: 0 10px 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .demo-card,
  .studio-console {
    transform: none !important;
  }
}

/* Product Design color refresh */
:root {
  --ink: #07111f;
  --muted: #607089;
  --teal: #13c6b2;
  --teal-dark: #087f77;
  --amber: #ffc46b;
  --blue: #4f8cff;
  --rose: #ff7a90;
  --green: #44c77f;
  --studio-bg: #06121f;
  --studio-bg-2: #0b1b2f;
  --studio-cyan: #35e0d0;
  --studio-gold: #ffc46b;
  --studio-line: rgba(183, 211, 255, 0.18);
}

body {
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 38%, #f6fbf8 70%, #ffffff 100%);
  color: #07111f;
}

.site-header {
  background: rgba(6, 18, 31, 0.64);
  border-bottom-color: rgba(183, 211, 255, 0.18);
  box-shadow: 0 22px 60px rgba(6, 18, 31, 0.18);
}

.main-nav a:hover {
  color: #ffffff;
}

.main-nav .nav-cta {
  background: linear-gradient(135deg, rgba(19, 198, 178, 0.28), rgba(79, 140, 255, 0.18));
  border-color: rgba(53, 224, 208, 0.45);
  color: #ffffff;
}

.hero {
  background:
    linear-gradient(118deg, #06121f 0%, #0b1d34 43%, #102b34 72%, #1b273d 100%);
}

.hero::before {
  background:
    linear-gradient(rgba(183, 211, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183, 211, 255, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, rgba(53, 224, 208, 0.14), rgba(255, 196, 107, 0.09) 52%, rgba(255, 122, 144, 0.08));
  background-size: 74px 74px, 74px 74px, cover;
}

.hero-media img {
  opacity: 0.56;
  filter: saturate(1.08) contrast(0.96);
}

.hero .eyebrow {
  color: #9cf5e7;
}

.hero p {
  color: rgba(237, 248, 255, 0.8);
}

.button.primary {
  background: linear-gradient(135deg, #f8ffff 0%, #dbfff7 52%, #fff0c9 100%);
  color: #07111f;
  box-shadow: 0 18px 44px rgba(19, 198, 178, 0.24);
}

.button.primary:hover {
  box-shadow: 0 24px 58px rgba(19, 198, 178, 0.3);
}

.button.ghost {
  background: rgba(183, 211, 255, 0.1);
  border-color: rgba(183, 211, 255, 0.25);
  color: #ffffff;
}

.button.dark {
  background: linear-gradient(135deg, #07111f, #123c48);
  box-shadow: 0 16px 34px rgba(6, 18, 31, 0.18);
}

.studio-console {
  background:
    linear-gradient(180deg, rgba(16, 43, 52, 0.94), rgba(6, 18, 31, 0.98));
  border-color: rgba(183, 211, 255, 0.2);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.36);
}

.console-topbar {
  background: rgba(255, 255, 255, 0.06);
  border-bottom-color: rgba(183, 211, 255, 0.14);
}

.console-dot:nth-child(2) {
  background: #ffc46b;
}

.console-dot:nth-child(3) {
  background: #35e0d0;
}

.console-preview {
  background: linear-gradient(180deg, #081827, #06121f);
}

.preview-status {
  background: rgba(6, 18, 31, 0.78);
  border-color: rgba(255, 196, 107, 0.35);
  color: #fff5dc;
}

.console-list div {
  background: linear-gradient(90deg, rgba(53, 224, 208, 0.13), rgba(79, 140, 255, 0.11), rgba(255, 196, 107, 0.08));
  border-color: rgba(183, 211, 255, 0.16);
}

.console-footer span {
  background: rgba(183, 211, 255, 0.08);
  border-color: rgba(183, 211, 255, 0.16);
}

.command-copy .eyebrow,
.section-heading .eyebrow {
  color: #087f77;
}

.demos-section {
  background:
    linear-gradient(rgba(7, 17, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 31, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 44%, #f6fbf8 100%);
  background-size: 72px 72px, 72px 72px, cover;
}

.filter {
  border-color: rgba(7, 17, 31, 0.12);
}

.filter:hover {
  border-color: rgba(19, 198, 178, 0.4);
  color: #075f58;
}

.filter.active {
  background: linear-gradient(135deg, #06121f, #123c48);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(6, 18, 31, 0.18);
}

.demo-card:hover {
  border-color: rgba(19, 198, 178, 0.48);
  box-shadow: 0 26px 60px rgba(13, 117, 110, 0.16);
}

.demo-meta span:last-child {
  background: #dffcf8;
  color: #075f58;
}

.offer-card.featured {
  background: linear-gradient(180deg, #ffffff, #f3fbff);
  border-color: rgba(19, 198, 178, 0.32);
  box-shadow: 0 24px 60px rgba(19, 198, 178, 0.14);
}

.process {
  background:
    linear-gradient(rgba(183, 211, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183, 211, 255, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, #06121f 0%, #0d243d 55%, #12382f 100%);
  background-size: 76px 76px, 76px 76px, cover;
}

.process-step {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(183, 211, 255, 0.14);
}

.process-number {
  background: linear-gradient(135deg, #dbfff7, #ffc46b);
  color: #07111f;
}

.contact {
  background: linear-gradient(135deg, #06121f 0%, #0b1d32 48%, #123126 100%);
}

.contact-panel,
.contact-form {
  border-color: rgba(183, 211, 255, 0.15);
}

.map-preview {
  background: linear-gradient(135deg, rgba(53, 224, 208, 0.14), rgba(255, 196, 107, 0.1));
  border-color: rgba(183, 211, 255, 0.16);
}

/* Header refinement: full-width app bar, no scroll gaps */
.site-header {
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  min-height: 78px;
  padding: 12px clamp(18px, 5vw, 72px);
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(6, 18, 31, 0.9), rgba(6, 18, 31, 0.66));
  border-bottom: 1px solid rgba(183, 211, 255, 0.14);
  box-shadow: 0 18px 46px rgba(2, 8, 23, 0.18);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
}

.site-header[data-elevated="true"] {
  top: 0;
  padding-block: 10px;
  background:
    linear-gradient(180deg, rgba(6, 18, 31, 0.96), rgba(6, 18, 31, 0.88));
  border-bottom-color: rgba(183, 211, 255, 0.2);
  box-shadow: 0 22px 54px rgba(2, 8, 23, 0.28);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(53, 224, 208, 0.11), transparent 28%, transparent 72%, rgba(255, 196, 107, 0.1));
  opacity: 0.78;
}

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

.brand {
  min-width: min(280px, 42vw);
  gap: 11px;
  color: #ffffff;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(219, 255, 247, 0.2);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(219, 255, 247, 0.14), rgba(255, 196, 107, 0.1));
  box-shadow: 0 12px 34px rgba(19, 198, 178, 0.18);
}

.brand strong {
  font-size: 1.02rem;
  letter-spacing: 0;
}

.brand small {
  color: rgba(237, 248, 255, 0.66);
  font-size: 0.7rem;
  line-height: 1.2;
}

.main-nav {
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(183, 211, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(237, 248, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.main-nav .nav-cta {
  padding-inline: 17px;
  background: linear-gradient(135deg, rgba(53, 224, 208, 0.28), rgba(255, 196, 107, 0.18));
  border: 1px solid rgba(53, 224, 208, 0.34);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 10px 26px rgba(19, 198, 178, 0.16);
}

.main-nav .nav-cta:hover {
  background: linear-gradient(135deg, rgba(53, 224, 208, 0.36), rgba(255, 196, 107, 0.24));
}

.nav-toggle {
  border: 1px solid rgba(183, 211, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-toggle span {
  background: #edf8ff;
}

@media (max-width: 980px) {
  .site-header {
    top: 0;
    right: 0;
    left: 0;
    min-height: 72px;
    padding: 10px 14px;
    align-items: center;
  }

  .brand {
    min-width: 0;
  }

  .main-nav {
    position: fixed;
    top: calc(100% + 8px);
    right: 14px;
    left: 14px;
    width: auto;
    padding: 10px;
    border-radius: 16px;
    background: #06121f;
    border-color: rgba(183, 211, 255, 0.18);
    box-shadow: 0 24px 56px rgba(2, 8, 23, 0.34);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .main-nav a {
    width: 100%;
    min-height: 42px;
    justify-content: center;
    border-radius: 12px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 82px;
    right: 14px;
    left: 14px;
    width: auto;
    max-width: none;
  }
}

/* Live project case studies */
.project-proof {
  background:
    linear-gradient(rgba(7, 17, 31, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 31, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  background-size: 72px 72px, 72px 72px, cover;
}

.project-head p {
  max-width: 660px;
  margin: 10px 0 0;
  color: #5a6b84;
}

.project-track {
  gap: 18px;
  padding: 4px 2px 18px;
}

.project-logo-card.case-project {
  display: flex;
  flex: 0 0 clamp(330px, 31vw, 430px);
  min-height: 456px;
  padding: 10px;
  flex-direction: column;
  border-color: rgba(7, 17, 31, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96));
  box-shadow:
    0 18px 46px rgba(7, 17, 31, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.project-logo-card.case-project:hover {
  border-color: rgba(19, 198, 178, 0.42);
  box-shadow:
    0 28px 72px rgba(7, 17, 31, 0.14),
    0 0 0 1px rgba(19, 198, 178, 0.08);
}

.case-project .project-visual {
  height: 194px;
  margin: 0 0 15px;
  border: 1px solid rgba(7, 17, 31, 0.1);
  background: #07111f;
}

.case-project .project-visual img {
  opacity: 1;
  filter: saturate(1.05) contrast(1.02);
}

.case-project .project-visual::after {
  background:
    linear-gradient(180deg, rgba(6, 18, 31, 0) 44%, rgba(6, 18, 31, 0.38) 100%),
    linear-gradient(135deg, rgba(19, 198, 178, 0.08), rgba(255, 196, 107, 0.06));
}

.case-project .brand-badge {
  min-width: 42px;
  height: 32px;
  padding-inline: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  background: rgba(6, 18, 31, 0.78);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.project-logo-card.case-project strong,
.project-logo-card.case-project small,
.project-logo-card.case-project p,
.project-logo-card.case-project .project-tags,
.project-logo-card.case-project .project-link {
  margin-inline: 8px;
}

.project-logo-card.case-project strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.16;
}

.project-logo-card.case-project small {
  margin-top: 6px;
  color: #087f77;
  font-size: 0.78rem;
  font-weight: 850;
}

.project-logo-card.case-project p {
  display: -webkit-box;
  min-height: 68px;
  margin-top: 10px;
  overflow: hidden;
  color: #53657e;
  font-size: 0.9rem;
  line-height: 1.52;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 13px;
}

.project-tags i {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  border: 1px solid rgba(79, 140, 255, 0.12);
  border-radius: 8px;
  background: #f1f6ff;
  color: #315b9e;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: auto;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #06121f, #123c48);
  font-size: 0.84rem;
  font-weight: 850;
  box-shadow: 0 14px 26px rgba(6, 18, 31, 0.16);
}

@media (max-width: 760px) {
  .project-logo-card.case-project {
    flex-basis: 86vw;
    min-height: 438px;
  }

  .case-project .project-visual {
    height: 176px;
  }

  .project-logo-card.case-project p {
    min-height: 64px;
  }
}

/* Demo showroom redesign and typography refresh */
:root {
  --font-sans: Aptos, "Segoe UI Variable Text", "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Segoe UI Variable Display", Aptos, "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-ui: "Segoe UI Variable Text", Aptos, "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-sans);
}

h1,
h2,
h3,
.brand strong,
.hero-metrics strong,
.preview-status strong {
  font-family: var(--font-display);
}

.main-nav,
.button,
.mini-button,
.filter,
.demo-meta,
.module-tags,
.demo-type,
.demo-group {
  font-family: var(--font-ui);
}

.demos-section .section-head {
  align-items: end;
  gap: 22px;
  margin-bottom: 22px;
}

.demos-section .section-head h2 {
  max-width: 720px;
  letter-spacing: 0;
}

.demos-section .section-head p {
  max-width: 560px;
  color: #52637c;
}

.search-box {
  flex-basis: min(100%, 420px);
}

.search-box input {
  height: 52px;
  border-color: rgba(7, 17, 31, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96));
  box-shadow:
    0 16px 36px rgba(7, 17, 31, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  color: #07111f;
}

.filters {
  gap: 8px;
  margin-bottom: 16px;
}

.filter {
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  color: #43536c;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(7, 17, 31, 0.05);
}

.filter.active {
  color: #ffffff;
  background: linear-gradient(135deg, #06121f, #123c48);
  box-shadow: 0 14px 30px rgba(6, 18, 31, 0.2);
}

.demo-stats {
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(7, 17, 31, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(7, 17, 31, 0.06);
}

.demo-stats strong {
  color: #07111f;
  font-family: var(--font-display);
}

.demo-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.demo-card {
  min-height: 470px;
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
  box-shadow:
    0 18px 42px rgba(7, 17, 31, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.demo-card:hover {
  border-color: rgba(19, 198, 178, 0.5);
  box-shadow:
    0 26px 62px rgba(7, 17, 31, 0.13),
    0 0 0 1px rgba(19, 198, 178, 0.1);
}

.demo-card::after {
  display: none;
}

.demo-image {
  aspect-ratio: 16 / 9;
  margin: 10px 10px 0;
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: 8px;
  background: linear-gradient(135deg, #0b1d34, #102b34);
}

.demo-image::before {
  background-image:
    linear-gradient(180deg, rgba(6, 18, 31, 0) 0%, rgba(6, 18, 31, 0.2) 46%, rgba(6, 18, 31, 0.68) 100%),
    var(--demo-image);
  transform: scale(1.01);
}

.demo-card:hover .demo-image::before {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.045);
}

.demo-image::after {
  background:
    linear-gradient(180deg, rgba(6, 18, 31, 0) 34%, rgba(6, 18, 31, 0.76) 100%),
    linear-gradient(135deg, rgba(19, 198, 178, 0.08), rgba(255, 196, 107, 0.07));
}

.demo-image-caption {
  inset: auto 14px 14px 14px;
  max-width: calc(100% - 112px);
}

.demo-image-caption strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.12;
}

.demo-image-caption span {
  color: rgba(237, 248, 255, 0.82);
  font-size: 0.78rem;
}

.demo-group {
  right: 14px;
  top: 14px;
  bottom: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(6, 18, 31, 0.72);
  color: #edf8ff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.demo-body {
  padding: 16px 16px 15px;
}

.demo-meta {
  gap: 6px;
  margin-bottom: 12px;
}

.demo-meta span {
  padding: 6px 9px;
  border-radius: 999px;
  background: #eef5fb;
  color: #40516a;
  font-size: 0.68rem;
  line-height: 1;
}

.demo-meta span:last-child {
  background: #dffcf8;
  color: #075f58;
}

.demo-body h3 {
  font-family: var(--font-display);
  font-size: 1.24rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.demo-type {
  margin-top: 7px;
  color: #087f77;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.demos-section .demo-body p {
  display: -webkit-box;
  min-height: 44px;
  margin-top: 10px;
  overflow: hidden;
  color: #53657e;
  font-size: 0.9rem;
  line-height: 1.52;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.demos-section .module-tags {
  display: flex;
  min-height: 0;
  margin-top: 13px;
  overflow: hidden;
  align-items: flex-start;
}

.demos-section .module-tags span:nth-child(n + 4) {
  display: none;
}

.module-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  border: 1px solid rgba(79, 140, 255, 0.12);
  border-radius: 8px;
  background: #f1f6ff;
  color: #315b9e;
  font-size: 0.68rem;
  line-height: 1;
}

.demo-actions {
  gap: 10px;
  padding-top: 15px;
}

.demo-actions .mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 8px;
  font-size: 0.82rem;
  line-height: 1;
}

.demo-actions .demo-primary {
  flex: 1 1 auto;
  border-color: transparent;
  background: linear-gradient(135deg, #06121f, #123c48);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(6, 18, 31, 0.18);
}

.demo-actions .mini-button:not(.demo-primary) {
  flex: 0 0 auto;
  background: #ffffff;
}

@media (max-width: 760px) {
  .demos-section .section-head {
    align-items: stretch;
  }

  .demo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .demo-card {
    min-height: 0;
  }

  .demo-image {
    aspect-ratio: 16 / 10;
  }

  .demos-section .module-tags,
  .demo-meta,
  .demo-actions .mini-button:not(.demo-primary) {
    display: flex;
  }

  .demos-section .demo-body p {
    display: -webkit-box;
  }

  .demo-type {
    display: block;
  }
}

@media (max-width: 620px) {
  .site-header {
    border-radius: 0;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.98rem;
  }
}

/* Service package redesign */
.services {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 17, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 31, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 44%, #f1fbf8 100%);
  background-size: 72px 72px, 72px 72px, cover;
}

.services .section-head {
  align-items: flex-end;
  gap: 24px;
}

.services .section-head h2 {
  letter-spacing: 0;
}

.services .section-head p {
  max-width: 690px;
  color: #51627b;
}

.offer-grid.compact-offers {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.compact-offers .offer-card,
.offer-card {
  position: relative;
  display: flex;
  min-height: 448px;
  overflow: hidden;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 255, 0.98));
  box-shadow:
    0 20px 54px rgba(7, 17, 31, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  isolation: isolate;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #13c6b2, #4f8cff);
  opacity: 0.9;
}

.offer-card::after {
  content: "";
  position: absolute;
  inset: 5px 0 auto;
  height: 150px;
  background:
    linear-gradient(110deg, rgba(19, 198, 178, 0.1), transparent 42%),
    linear-gradient(270deg, rgba(79, 140, 255, 0.09), transparent 48%);
  pointer-events: none;
  z-index: -1;
}

.offer-card.featured {
  color: #ffffff;
  background:
    linear-gradient(140deg, #06121f 0%, #0b2a35 58%, #123329 100%);
  border-color: rgba(53, 224, 208, 0.48);
  box-shadow:
    0 30px 80px rgba(6, 18, 31, 0.22),
    0 0 0 1px rgba(53, 224, 208, 0.12);
}

.offer-card.featured::before {
  background: linear-gradient(90deg, #ffc46b, #35e0d0);
}

.offer-card.featured::after {
  background:
    linear-gradient(115deg, rgba(53, 224, 208, 0.2), transparent 46%),
    linear-gradient(270deg, rgba(255, 196, 107, 0.16), transparent 50%);
}

.offer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.offer-kicker {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  color: #06121f;
  background: #e8fffb;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 850;
  box-shadow: inset 0 0 0 1px rgba(19, 198, 178, 0.12);
}

.offer-label {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(37, 89, 166, 0.14);
  border-radius: 8px;
  color: #24569d;
  background: #edf4ff;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1;
}

.offer-card.featured .offer-kicker {
  color: #06121f;
  background: #ffc46b;
  box-shadow: 0 12px 26px rgba(255, 196, 107, 0.24);
}

.offer-card.featured .offer-label {
  color: #06121f;
  background: #a9f3e9;
  border-color: rgba(255, 255, 255, 0.2);
}

.offer-icon {
  display: grid;
  height: 118px;
  min-height: 118px;
  margin: 22px 0 25px;
  place-items: center;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(19, 198, 178, 0.14), rgba(79, 140, 255, 0.11)),
    #eef7fb;
}

.offer-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: #07111f;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offer-card.featured .offer-icon {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(53, 224, 208, 0.24), rgba(255, 196, 107, 0.18)),
    rgba(255, 255, 255, 0.07);
}

.offer-card.featured .offer-icon svg {
  stroke: #ffffff;
}

.compact-offers .offer-card h3,
.offer-card h3 {
  margin: 0;
  color: #06121f;
  font-family: var(--font-display);
  font-size: clamp(1.48rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.offer-card.featured h3 {
  color: #ffffff;
}

.compact-offers .offer-card p,
.offer-card p {
  margin: 14px 0 0;
  color: #53657e;
  line-height: 1.62;
}

.offer-card.featured p,
.offer-card.featured li {
  color: rgba(237, 248, 255, 0.82);
}

.offer-card ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 20px 0 22px;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 24px;
  color: #53657e;
  line-height: 1.5;
}

.offer-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: #13c6b2;
}

.offer-card.featured li::before {
  background: #ffc46b;
}

.offer-result {
  display: flex;
  min-height: 58px;
  margin-top: auto;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 13px;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 8px;
  background: #f3fbff;
}

.offer-result span {
  flex: 0 0 auto;
  color: #607089;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.offer-result strong {
  display: block;
  margin: 0;
  padding: 0;
  color: #06121f;
  font-size: 0.86rem;
  line-height: 1.25;
  text-align: right;
}

.offer-card.featured .offer-result {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.offer-card.featured .offer-result span {
  color: rgba(237, 248, 255, 0.66);
}

.offer-card.featured .offer-result strong {
  color: #ffffff;
}

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

  .compact-offers .offer-card,
  .offer-card {
    min-height: 0;
  }

  .services .section-head {
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .services .section-head .button {
    width: 100%;
  }

  .compact-offers .offer-card,
  .offer-card {
    padding: 18px;
  }

  .offer-icon {
    height: 102px;
    min-height: 102px;
    margin: 18px 0 21px;
  }

  .offer-result {
    align-items: flex-start;
    flex-direction: column;
  }

  .offer-result strong {
    text-align: left;
  }
}

/* Real Google Maps contact panel */
.contact-map-link {
  color: #ffffff;
  text-decoration: none;
}

.contact-map-link:hover {
  color: #a9f3e9;
}

.map-preview.real-map {
  min-height: 340px;
  padding: 0;
  border-color: rgba(183, 211, 255, 0.2);
  background: #07111f;
  box-shadow: 0 22px 62px rgba(2, 8, 23, 0.26);
}

.map-preview.real-map::after {
  display: none;
}

.map-preview.real-map iframe {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  filter: saturate(1.05) contrast(1.02);
}

.map-card {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 390px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(6, 18, 31, 0.86);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.map-card span {
  color: #ffc46b;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.map-card strong {
  display: block;
  max-width: none;
  margin: 7px 0 0;
  color: #ffffff;
  font-size: 1.12rem;
  line-height: 1.18;
}

.map-card p {
  max-width: 330px;
  margin: 7px 0 13px;
  color: rgba(237, 248, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.45;
}

.map-card a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 8px;
  color: #06121f;
  background: #a9f3e9;
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
}

.map-card a:hover {
  background: #ffc46b;
}

@media (max-width: 620px) {
  .map-preview.real-map {
    min-height: 420px;
  }

  .map-preview.real-map iframe {
    min-height: 420px;
  }

  .map-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}

/* SEO solution routes */
.seo-routes {
  background:
    linear-gradient(rgba(7, 17, 31, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 31, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
  background-size: 72px 72px, 72px 72px, cover;
}

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

.seo-route-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: 20px;
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(7, 17, 31, 0.07);
  color: #07111f;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.seo-route-card:hover {
  border-color: rgba(19, 198, 178, 0.42);
  box-shadow: 0 26px 68px rgba(7, 17, 31, 0.12);
  transform: translateY(-4px);
}

.seo-route-card span {
  color: #087f77;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.seo-route-card strong {
  display: block;
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.16;
}

.seo-route-card p {
  margin: 12px 0 0;
  color: #53657e;
  line-height: 1.55;
}

/* Static SEO landing pages */
.seo-page-shell {
  color: #07111f;
  background:
    linear-gradient(rgba(7, 17, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 31, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 44%, #f1fbf8 100%);
  background-size: 72px 72px, 72px 72px, cover;
}

.seo-page-header,
.seo-page-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 64px);
}

.seo-page-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(7, 17, 31, 0.08);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.seo-page-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #07111f;
  font-weight: 850;
  text-decoration: none;
}

.seo-page-brand img {
  width: 40px;
  height: 40px;
}

.seo-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.seo-page-nav a,
.seo-page-footer a {
  color: #315b9e;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.seo-page-main {
  padding: 70px clamp(18px, 5vw, 64px);
}

.seo-page-hero,
.seo-page-section {
  max-width: 1180px;
  margin: 0 auto;
}

.seo-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 38px;
  align-items: center;
}

.seo-page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 6vw, 5.4rem);
  line-height: 0.95;
}

.seo-page-hero p {
  max-width: 720px;
  color: #53657e;
  font-size: 1.08rem;
  line-height: 1.7;
}

.seo-page-actions,
.seo-page-card-list,
.seo-page-checklist,
.seo-page-faq {
  display: grid;
  gap: 12px;
}

.seo-page-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 26px;
}

.seo-page-actions .button.ghost {
  border-color: rgba(7, 17, 31, 0.12);
  color: #315b9e;
  background: rgba(255, 255, 255, 0.72);
}

.seo-page-actions .button.ghost:hover {
  color: #06121f;
  background: #ffffff;
}

.seo-page-cta .seo-page-actions .button.ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.seo-page-panel,
.seo-page-card,
.seo-page-faq details {
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(7, 17, 31, 0.07);
}

.seo-page-panel {
  padding: 22px;
}

.seo-page-panel span,
.seo-page-card span {
  color: #087f77;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.seo-page-panel strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.08;
}

.seo-page-panel ul,
.seo-page-section ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: #53657e;
  line-height: 1.58;
}

.seo-page-section {
  margin-top: 64px;
}

.seo-page-section h2 {
  max-width: 820px;
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.02;
}

.seo-page-section > p {
  max-width: 760px;
  color: #53657e;
  line-height: 1.7;
}

.seo-page-card-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.seo-page-card {
  padding: 20px;
}

.seo-page-card strong {
  display: block;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.18;
}

.seo-page-card p {
  color: #53657e;
  line-height: 1.55;
}

.seo-page-checklist {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.seo-page-faq {
  margin-top: 22px;
}

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

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

.seo-page-faq p {
  color: #53657e;
  line-height: 1.6;
}

.seo-page-demo-band,
.seo-page-price-box {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: 26px;
  padding: 28px;
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 16%, rgba(10, 206, 194, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 249, 250, 0.88));
  box-shadow: 0 22px 62px rgba(7, 17, 31, 0.08);
}

.seo-page-demo-band h2,
.seo-page-demo-band p {
  margin-top: 0;
}

.seo-page-demo-shot {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: 8px;
  background: #06121f;
  box-shadow: 0 24px 64px rgba(7, 17, 31, 0.16);
}

.seo-page-demo-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.seo-page-demo-shot:hover img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.seo-page-price-box {
  grid-template-columns: minmax(0, 1fr) auto;
  background: #ffffff;
}

.seo-page-price-box span {
  color: #087f77;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.seo-page-price-box strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 2.35rem);
  line-height: 1.08;
}

.seo-page-price-box p {
  max-width: 780px;
  color: #53657e;
  line-height: 1.6;
}

.seo-page-cta {
  margin-top: 70px;
  padding: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #06121f 0%, #0b1d32 48%, #123126 100%);
  color: #ffffff;
}

.seo-page-cta p {
  color: rgba(237, 248, 255, 0.76);
}

.seo-page-footer {
  border-top: 1px solid rgba(7, 17, 31, 0.08);
  background: #ffffff;
}

.floating-contact {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 80;
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.floating-contact-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 20px 46px rgba(7, 17, 31, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  pointer-events: auto;
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.floating-contact-button::before {
  position: absolute;
  inset: -60% -40%;
  content: "";
  background: linear-gradient(120deg, transparent 32%, rgba(255, 255, 255, 0.32) 50%, transparent 68%);
  transform: translateX(-62%) rotate(10deg);
  animation: floating-shimmer 4.5s ease-in-out infinite;
}

.floating-contact-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 26px 58px rgba(7, 17, 31, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  filter: saturate(1.08);
}

.floating-contact-button:focus-visible {
  outline: 3px solid rgba(10, 206, 194, 0.36);
  outline-offset: 4px;
}

.floating-contact-icon,
.floating-contact-text {
  position: relative;
  z-index: 1;
}

.floating-contact-icon {
  display: grid;
  width: 100%;
  height: 100%;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 950;
  box-shadow: none;
}

.floating-contact-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.floating-contact-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.floating-call {
  background: linear-gradient(135deg, #093142 0%, #0c8f83 100%);
}

.floating-call::after {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(12, 143, 131, 0.48);
  border-radius: inherit;
  content: "";
  animation: floating-pulse 1.9s ease-out infinite;
}

.floating-zalo {
  background: linear-gradient(135deg, #0068ff 0%, #00a8ff 100%);
}

.floating-messenger {
  background: linear-gradient(135deg, #5b2dff 0%, #ff3d9a 100%);
}

@keyframes floating-pulse {
  0% {
    opacity: 0.75;
    transform: scale(0.96);
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

@keyframes floating-shimmer {
  0%,
  68% {
    transform: translateX(-62%) rotate(10deg);
  }

  100% {
    transform: translateX(62%) rotate(10deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-contact-button,
  .floating-contact-button::before,
  .floating-call::after {
    animation: none;
    transition: none;
  }
}

@media (max-width: 1060px) {
  .seo-route-grid,
  .seo-page-card-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-page-demo-band,
  .seo-page-price-box {
    grid-template-columns: 1fr;
  }

  .seo-page-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .seo-route-grid,
  .seo-page-card-list,
  .seo-page-checklist {
    grid-template-columns: 1fr;
  }

  .seo-page-header,
  .seo-page-footer,
  .seo-page-nav,
  .seo-page-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .seo-page-main {
    padding-top: 46px;
  }
}

@media (max-width: 680px) {
  .floating-contact {
    right: max(10px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    left: auto;
    grid-template-columns: repeat(3, 44px);
    gap: 8px;
  }

  .floating-contact-button {
    width: 44px;
    height: 44px;
    justify-content: center;
    padding: 0;
    font-size: 0.72rem;
    line-height: 1;
  }

  .floating-contact-icon {
    width: 100%;
    height: 100%;
  }

  .floating-contact-text {
    display: none;
  }

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

/* Conversion optimization layer */
.proof-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-promise span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 820;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 18px;
  padding: 13px 14px;
  border: 1px solid rgba(8, 17, 31, 0.1);
  border-radius: 8px;
  background: #f6fbff;
}

.offer-card.featured .offer-price {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.offer-price span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 820;
}

.offer-card.featured .offer-price span {
  color: rgba(237, 248, 255, 0.7);
}

.offer-price strong {
  color: var(--ink);
  font-size: clamp(1.3rem, 2.1vw, 1.74rem);
  line-height: 1;
}

.offer-card.featured .offer-price strong {
  color: #ffffff;
}

.conversion-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  color: #edf8ff;
  background:
    radial-gradient(circle at 14% 12%, rgba(23, 184, 178, 0.22), transparent 26%),
    linear-gradient(135deg, #07101d 0%, #14243e 100%);
}

.conversion-panel h2 {
  color: #ffffff;
}

.conversion-panel p {
  color: rgba(237, 248, 255, 0.74);
}

.conversion-copy p {
  max-width: 620px;
}

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

.conversion-grid article {
  min-height: 250px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.conversion-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: #07101d;
  background: #9df1e8;
  font-weight: 900;
}

.conversion-grid strong {
  display: block;
  margin-top: 62px;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.2;
}

.form-head {
  display: grid;
  gap: 4px;
  padding-bottom: 2px;
}

.form-head strong,
.form-head span {
  display: block;
}

.form-head strong {
  color: var(--ink);
  font-size: 1.2rem;
}

.form-head span {
  color: var(--muted);
  line-height: 1.45;
}

.lead-routing-note {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(23, 184, 178, 0.22);
  border-radius: 8px;
  background: #eefdfa;
}

.lead-routing-note span,
.lead-routing-note strong {
  font-size: 0.78rem;
  line-height: 1;
}

.lead-routing-note span {
  color: var(--muted);
  font-weight: 760;
}

.lead-routing-note strong {
  padding: 7px 9px;
  border-radius: 999px;
  color: #07514d;
  background: #ffffff;
  font-weight: 880;
}

@media (max-width: 1180px) {
  .conversion-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 780px) {
  .proof-strip {
    grid-template-columns: 1fr;
  }

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

  .conversion-grid article {
    min-height: auto;
  }

  .conversion-grid strong {
    margin-top: 34px;
  }
}

/* Hero redesign: bright digital-studio look for SME website + automation */
.hero {
  min-height: clamp(660px, 86vh, 820px);
  grid-template-columns: minmax(0, 0.98fr) minmax(330px, 0.48fr);
  gap: clamp(30px, 5vw, 76px);
  padding-top: 124px;
  padding-bottom: 56px;
  color: #082035;
  background:
    radial-gradient(circle at 13% 20%, rgba(34, 211, 238, 0.32), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(255, 196, 107, 0.34), transparent 24%),
    radial-gradient(circle at 72% 82%, rgba(20, 184, 166, 0.22), transparent 30%),
    linear-gradient(135deg, #f8feff 0%, #e9fbf8 42%, #f3fbff 74%, #fff8ec 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(8, 32, 53, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 32, 53, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 254, 255, 0.98) 0%, rgba(248, 254, 255, 0.78) 36%, rgba(248, 254, 255, 0.28) 62%, rgba(248, 254, 255, 0.06) 100%);
  background-size: 92px 92px, 92px 92px, auto;
}

.hero::after {
  height: 42%;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.94), transparent),
    radial-gradient(circle at 72% 78%, rgba(20, 184, 166, 0.14), transparent 30%);
}

.hero-media img {
  width: 100%;
  opacity: 0.8;
  object-position: center right;
  filter: saturate(1.08) contrast(0.96);
  mix-blend-mode: normal;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.28) 24%, rgba(0, 0, 0, 0.9) 44%, #000 100%);
}

.hero-content {
  max-width: 760px;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.35rem, 6vw, 6.4rem);
  line-height: 0.93;
  color: #071827;
  text-wrap: balance;
}

.hero p {
  max-width: 650px;
  color: rgba(8, 32, 53, 0.76);
  font-weight: 520;
}

.site-header {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 253, 250, 0.78));
  border-bottom: 1px solid rgba(8, 32, 53, 0.08);
  box-shadow: 0 18px 46px rgba(8, 32, 53, 0.1);
}

.site-header[data-elevated="true"] {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 253, 250, 0.92));
  border-bottom-color: rgba(8, 32, 53, 0.12);
  box-shadow: 0 20px 54px rgba(8, 32, 53, 0.14);
}

.site-header::before {
  background:
    linear-gradient(90deg, rgba(20, 184, 166, 0.14), transparent 30%, transparent 70%, rgba(255, 196, 107, 0.16));
  opacity: 0.88;
}

.brand {
  color: #082035;
}

.brand small {
  color: rgba(8, 32, 53, 0.62);
}

.brand-logo {
  border-color: rgba(13, 148, 136, 0.22);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 34px rgba(13, 148, 136, 0.16);
}

.main-nav {
  border-color: rgba(8, 32, 53, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(8, 32, 53, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.main-nav a {
  color: rgba(8, 32, 53, 0.7);
}

.main-nav a:hover {
  color: #082035;
  background: rgba(20, 184, 166, 0.1);
}

.main-nav .nav-cta {
  border-color: rgba(13, 148, 136, 0.28);
  color: #06342f;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(255, 196, 107, 0.24));
  box-shadow:
    0 12px 28px rgba(13, 148, 136, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.main-nav .nav-cta:hover {
  color: #05201d;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.28), rgba(255, 196, 107, 0.34));
}

.nav-toggle {
  color: #082035;
  border-color: rgba(8, 32, 53, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.hero-actions .button,
.main-nav .nav-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.hero-actions .button::before,
.main-nav .nav-cta::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.62) 42%, transparent 74%);
  opacity: 0;
  transform: translateX(-72%);
  transition: opacity 180ms ease, transform 520ms ease;
}

.hero-actions .button:hover,
.main-nav .nav-cta:hover {
  transform: translateY(-3px);
}

.hero-actions .button:hover::before,
.main-nav .nav-cta:hover::before {
  opacity: 1;
  transform: translateX(72%);
}

.hero-actions .button:active,
.main-nav .nav-cta:active {
  transform: translateY(-1px) scale(0.99);
}

.hero-actions .button:focus-visible,
.main-nav .nav-cta:focus-visible {
  outline: 3px solid rgba(20, 184, 166, 0.26);
  outline-offset: 4px;
}

.hero-actions .button.primary {
  border-color: rgba(13, 148, 136, 0.26);
  color: #05201d;
  background:
    linear-gradient(135deg, #ffffff 0%, #e6fffb 42%, #fff1c6 100%);
  box-shadow:
    0 18px 44px rgba(13, 148, 136, 0.22),
    0 8px 18px rgba(255, 196, 107, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-actions .button.primary:hover {
  box-shadow:
    0 24px 58px rgba(13, 148, 136, 0.28),
    0 12px 26px rgba(255, 196, 107, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.hero-actions .button.ghost {
  border-color: rgba(8, 32, 53, 0.16);
  color: #082035;
  background: rgba(255, 255, 255, 0.66);
  box-shadow:
    0 14px 34px rgba(8, 32, 53, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
}

.hero-actions .button.ghost:hover {
  border-color: rgba(13, 148, 136, 0.36);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 46px rgba(8, 32, 53, 0.14);
}

.hero-promise span {
  border-color: rgba(8, 32, 53, 0.12);
  color: rgba(8, 32, 53, 0.78);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 10px 30px rgba(8, 32, 53, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(12px);
}

.launch-desk {
  width: min(100%, 430px);
  padding: 0;
  overflow: hidden;
  border-color: rgba(8, 32, 53, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(236, 253, 245, 0.74)),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    0 34px 94px rgba(8, 32, 53, 0.18),
    0 12px 34px rgba(13, 148, 136, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
  backdrop-filter: blur(22px);
}

.launch-desk .console-topbar {
  border-color: rgba(8, 32, 53, 0.1);
  color: rgba(8, 32, 53, 0.72);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(232, 255, 250, 0.78));
}

.launch-desk .console-topbar strong {
  color: #0b2a3d;
}

.launch-desk .console-screen {
  gap: 10px;
  padding: 12px;
}

.launch-brief {
  position: relative;
  min-height: 148px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(13, 148, 136, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 18%, rgba(45, 212, 191, 0.22), transparent 28%),
    radial-gradient(circle at 86% 22%, rgba(255, 196, 107, 0.26), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 252, 249, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.launch-brief::before {
  position: absolute;
  inset: 14px 14px auto auto;
  width: 112px;
  height: 76px;
  border: 1px solid rgba(8, 32, 53, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(20, 184, 166, 0.28) 0 22%, transparent 22%),
    linear-gradient(180deg, rgba(8, 32, 53, 0.08) 0 16%, transparent 16%),
    radial-gradient(circle at 42% 38%, rgba(13, 148, 136, 0.22) 0 7px, transparent 8px),
    radial-gradient(circle at 68% 38%, rgba(245, 158, 11, 0.26) 0 7px, transparent 8px),
    linear-gradient(90deg, transparent 32%, rgba(13, 148, 136, 0.12) 32% 68%, transparent 68%),
    linear-gradient(180deg, transparent 48%, rgba(20, 184, 166, 0.18) 48% 62%, transparent 62% 72%, rgba(245, 158, 11, 0.16) 72% 86%, transparent 86%);
  content: "";
  opacity: 0.85;
}

.launch-brief::after {
  position: absolute;
  right: 34px;
  bottom: 24px;
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.44), transparent);
  content: "";
  transform: rotate(-18deg);
}

.launch-brief > span,
.launch-pipeline span {
  color: #0f766e;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.launch-brief strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 270px;
  margin-top: 20px;
  color: #082035;
  font-size: clamp(1.22rem, 1.65vw, 1.55rem);
  line-height: 1.02;
}

.launch-brief p {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin: 8px 0 0;
  color: rgba(8, 32, 53, 0.66);
  font-size: 0.82rem;
  line-height: 1.45;
}

.launch-brief-metrics {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.launch-brief-metrics span,
.launch-preview-grid span,
.launch-preview-grid a,
.launch-desk .console-footer span,
.launch-desk .console-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 9px;
  border: 1px solid rgba(8, 32, 53, 0.1);
  border-radius: 8px;
  color: rgba(8, 32, 53, 0.76);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 820;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.launch-brief-metrics b {
  margin-right: 5px;
  color: #0f766e;
}

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

.launch-pipeline article,
.launch-pipeline a {
  display: block;
  min-height: 96px;
  padding: 12px;
  border: 1px solid rgba(8, 32, 53, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 26px rgba(8, 32, 53, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.launch-pipeline article:hover,
.launch-pipeline a:hover {
  border-color: rgba(13, 148, 136, 0.24);
  box-shadow: 0 16px 36px rgba(8, 32, 53, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}

.launch-pipeline a:focus-visible,
.launch-preview-grid a:focus-visible,
.launch-desk .console-footer a:focus-visible {
  outline: 3px solid rgba(20, 184, 166, 0.28);
  outline-offset: 3px;
}

.launch-pipeline strong,
.launch-pipeline p {
  display: block;
}

.launch-pipeline strong {
  margin-top: 18px;
  color: #082035;
  font-size: 1.04rem;
}

.launch-pipeline p {
  margin: 8px 0 0;
  color: rgba(8, 32, 53, 0.6);
  font-size: 0.72rem;
  line-height: 1.34;
}

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

.launch-preview-grid span,
.launch-preview-grid a {
  justify-content: center;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.launch-preview-grid a:hover,
.launch-desk .console-footer a:hover {
  border-color: rgba(13, 148, 136, 0.24);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(8, 32, 53, 0.1);
  transform: translateY(-2px);
}

.launch-desk .console-footer {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-actions .button,
  .main-nav .nav-cta,
  .launch-pipeline article,
  .launch-pipeline a,
  .launch-preview-grid a {
    transition: none;
  }
}

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

  .hero .launch-desk {
    display: none !important;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 112px;
  }

  .hero::before {
    background:
      linear-gradient(rgba(8, 32, 53, 0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(8, 32, 53, 0.045) 1px, transparent 1px),
      linear-gradient(180deg, rgba(248, 254, 255, 0.9) 0%, rgba(248, 254, 255, 0.78) 48%, rgba(248, 254, 255, 0.96) 100%);
    background-size: 92px 92px, 92px 92px, auto;
  }

  .hero-media img {
    opacity: 0.48;
    object-position: 62% top;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.42) 62%, transparent 100%);
  }

  .hero-content {
    width: 100%;
    max-width: calc(100vw - 36px) !important;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.7rem);
    line-height: 0.98;
  }

  .hero p {
    width: min(320px, calc(100vw - 64px)) !important;
    max-width: min(320px, calc(100vw - 64px)) !important;
    overflow-wrap: break-word;
    white-space: normal;
  }
}

/* Header dropdown redesign */
.site-header {
  min-height: 74px;
  padding: 12px clamp(16px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(8, 32, 53, 0.1);
  box-shadow: 0 18px 44px rgba(8, 32, 53, 0.1);
}

.site-header .main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.site-header[data-elevated="true"] {
  padding-block: 10px;
  background: rgba(255, 255, 255, 0.98);
}

.main-nav {
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(255, 196, 107, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 38px rgba(8, 32, 53, 0.1), inset 0 1px 0 #fff;
}

.nav-group {
  position: relative;
}

.nav-group::after {
  position: absolute;
  top: 100%;
  left: -18px;
  z-index: 19;
  display: none;
  width: min(716px, calc(100vw - 32px));
  height: 16px;
  content: "";
}

.nav-group:nth-of-type(n + 2)::after {
  right: -18px;
  left: auto;
}

.nav-group:hover::after,
.nav-group[open]::after {
  display: block;
}

.nav-group summary,
.main-nav > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 16px;
  border: 1px solid rgba(8, 32, 53, 0.08);
  border-radius: 999px;
  color: rgba(8, 32, 53, 0.76);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  list-style: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-group summary::after {
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.nav-group:hover summary,
.nav-group[open] summary,
.main-nav > a:hover {
  color: #082035;
  background: rgba(20, 184, 166, 0.11);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 20;
  display: none;
  min-width: 238px;
  padding: 14px;
  border: 1px solid rgba(255, 196, 107, 0.36);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(8, 32, 53, 0.16);
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown,
.nav-group[open] .nav-dropdown {
  display: grid;
  gap: 4px;
}

.nav-dropdown a {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  column-gap: 12px;
  justify-content: flex-start;
  min-height: 70px;
  padding: 12px;
  border-radius: 14px;
  color: rgba(8, 32, 53, 0.72);
  line-height: 1.25;
}

.nav-dropdown.mega-dropdown {
  min-width: min(700px, calc(100vw - 32px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.nav-group:nth-of-type(n + 2) .nav-dropdown.mega-dropdown {
  right: 0;
  left: auto;
}

.nav-dropdown.mega-dropdown a {
  display: grid;
  min-height: 72px;
  align-content: center;
}

.nav-dropdown a strong {
  grid-column: 2;
  align-self: end;
  color: #082035;
  font-size: 0.98rem;
  line-height: 1.15;
}

.nav-dropdown a > span:not(.nav-icon) {
  grid-column: 2;
  color: #52637c;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.35;
}

.nav-icon {
  grid-row: 1 / span 2;
  grid-column: 1;
  display: inline-grid;
  width: 38px;
  height: 38px;
  align-self: center;
  place-items: center;
  border-radius: 999px;
  color: #0d9488;
  background: rgba(13, 148, 136, 0.1);
}

.nav-group:nth-of-type(2) .nav-icon {
  color: #d61f69;
  background: rgba(214, 31, 105, 0.08);
}

.nav-group:nth-of-type(3) .nav-icon {
  color: #b7791f;
  background: rgba(255, 196, 107, 0.16);
}

.nav-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-dropdown a:hover {
  color: #06342f;
  background: rgba(255, 196, 107, 0.1);
}

.header-cta,
.main-nav .nav-cta {
  border: 1px solid rgba(13, 148, 136, 0.28);
  color: #06342f;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(255, 196, 107, 0.24));
}

@media (max-width: 980px) {
  .site-header .main-nav {
    position: fixed;
    left: clamp(16px, 4vw, 24px);
    transform: none;
    gap: 8px;
    padding: 12px;
    border-radius: 16px;
    background: #ffffff;
    border-color: rgba(8, 32, 53, 0.16);
    box-shadow: 0 26px 64px rgba(8, 32, 53, 0.24);
  }

  .main-nav.open {
    background: #ffffff;
  }

  .nav-group,
  .nav-group summary,
  .main-nav > a {
    width: 100%;
  }

  .nav-group summary,
  .main-nav > a {
    justify-content: space-between;
    min-height: 44px;
  }

  .nav-dropdown {
    position: static;
    right: auto;
    left: auto;
    min-width: 0;
    margin-top: 6px;
    padding: 10px;
    border-radius: 16px;
    background: #f7fbff;
    border-color: rgba(8, 32, 53, 0.12);
    box-shadow: none;
  }

  .nav-group::after {
    display: none;
  }

  .nav-dropdown.mega-dropdown {
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .nav-dropdown a,
  .nav-dropdown.mega-dropdown a {
    min-height: 68px;
  }

  .header-cta {
    display: none;
  }

  .nav-group summary,
  .main-nav > a,
  .nav-dropdown a,
  .nav-dropdown a strong {
    color: #082035;
  }

  .nav-dropdown a > span:not(.nav-icon) {
    color: #52637c;
  }
}

.package-compare {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(8, 32, 53, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 56px rgba(8, 32, 53, 0.08);
}

.compare-row {
  display: grid;
  grid-template-columns: 0.8fr repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(8, 32, 53, 0.08);
}

.compare-row:first-child {
  border-top: 0;
}

.compare-row > * {
  min-width: 0;
  margin: 0;
  padding: 16px;
  border-left: 1px solid rgba(8, 32, 53, 0.08);
}

.compare-row > *:first-child {
  border-left: 0;
}

.compare-row > span {
  color: #082035;
  font-weight: 850;
}

.compare-row p {
  color: #52637c;
  font-size: 0.92rem;
  line-height: 1.55;
}

.compare-head {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.13), rgba(255, 196, 107, 0.16));
}

.compare-head strong {
  color: #06342f;
  font-size: 0.94rem;
}

.why-web-ai {
  background:
    linear-gradient(90deg, rgba(20, 184, 166, 0.08), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

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

.why-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(8, 32, 53, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(8, 32, 53, 0.07);
}

.why-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #06342f;
  background: rgba(20, 184, 166, 0.13);
  font-size: 0.82rem;
  font-weight: 900;
}

.why-grid strong {
  display: block;
  color: #082035;
  font-size: 1.02rem;
  line-height: 1.25;
}

.why-grid p {
  margin-top: 10px;
  color: #52637c;
  font-size: 0.92rem;
  line-height: 1.6;
}

.demo-focus-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -2px 0 16px;
}

.demo-focus-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(8, 32, 53, 0.1);
  border-radius: 8px;
  color: #06342f;
  background: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(8, 32, 53, 0.06);
}

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

@media (max-width: 860px) {
  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-row > * {
    border-left: 0;
    border-top: 1px solid rgba(8, 32, 53, 0.08);
  }

  .compare-row > *:first-child {
    border-top: 0;
    background: rgba(8, 32, 53, 0.03);
  }

  .compare-head {
    display: none;
  }
}

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

  .why-grid article {
    min-height: 0;
  }
}


.blog-preview,
.article-shell {
  background: #f6f9fc;
}

.blog-preview-grid,
.blog-card-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.blog-preview-card,
.blog-card {
  display: grid;
  align-content: start;
  min-height: 188px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(8, 17, 31, 0.08);
  transition: transform 160ms ease, border-color 160ms ease;
}

.blog-preview-card img,
.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  margin-bottom: 14px;
  border-radius: 8px;
  object-fit: cover;
}

.blog-preview-card:hover,
.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 184, 178, 0.42);
}

.blog-preview-card span,
.blog-card span,
.article-meta {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-preview-card strong,
.blog-card strong {
  margin-top: 12px;
  font-size: 1.08rem;
  line-height: 1.28;
}

.blog-preview-card p,
.blog-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.article-page {
  background: #f6f9fc;
  color: var(--ink);
}

.article-nav a {
  color: rgba(238, 248, 255, 0.86);
}

.article-shell {
  min-height: 72vh;
  padding: 118px clamp(18px, 4vw, 56px) 56px;
}

.article-main,
.blog-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.article-back {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-weight: 800;
}

.article-hero,
.blog-hub-hero {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(8, 17, 31, 0.08);
}

.article-hero h1,
.blog-hub-hero h1 {
  max-width: 920px;
  margin: 10px 0 0;
  font-size: clamp(2.05rem, 4vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.article-lead,
.blog-hub-hero p {
  max-width: 800px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.answer-box {
  margin-top: 24px;
  padding: 20px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: #eefbf9;
}

.article-image {
  margin: 24px 0 0;
}

.article-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(8, 17, 31, 0.12);
}

.article-image figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.answer-box p {
  margin: 8px 0 0;
  color: #17314a;
  line-height: 1.7;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 26px;
  margin-top: 24px;
  align-items: start;
}

.article-body,
.article-aside {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.article-body {
  padding: clamp(24px, 4vw, 42px);
}

.article-section + .article-section,
.article-faq,
.article-cta {
  margin-top: 34px;
}

.article-section h2,
.article-faq h2,
.article-cta h2 {
  margin: 0 0 14px;
  font-size: 1.45rem;
  line-height: 1.25;
}

.article-section p,
.article-section li,
.article-faq p,
.article-cta p {
  color: #31415a;
  font-size: 1.02rem;
  line-height: 1.75;
}

.article-section p {
  margin: 0 0 16px;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-table th,
.article-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  color: #31415a;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.article-table thead th {
  background: #eefbf9;
  color: var(--ink);
}

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

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

.article-columns > div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.article-columns ul {
  margin: 0;
  padding-left: 20px;
}

.article-checklist ul {
  margin: 0;
  padding-left: 22px;
}

.article-faq details {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.article-faq summary {
  cursor: pointer;
  font-weight: 800;
}

.article-cta {
  padding: 24px;
  border-radius: 8px;
  background: #08111f;
  color: #fff;
}

.article-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.article-aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
  padding: 18px;
}

.article-aside a {
  color: var(--muted);
  font-weight: 700;
}

.blog-hub-hero {
  margin-bottom: 22px;
}

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

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

.article-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 980px) {
  .blog-preview-grid,
  .blog-card-list,
  .article-columns,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 680px) {
  .article-shell {
    padding: 96px 16px 38px;
  }

  .article-hero,
  .blog-hub-hero,
  .article-body {
    padding: 22px;
  }

  .article-nav {
    display: none;
  }
}
