:root {
  --ink: #090613;
  --ink-soft: #21152b;
  --paper: #fff8fe;
  --paper-deep: #f3e7f4;
  --white: #ffffff;
  --line: #e4cfe6;
  --muted: #75677e;
  --green: #8d3d95;
  --green-bright: #c455c7;
  --coral: #ff2e35;
  --amber: #f4a743;
  --blue: #5f56d8;
  --shadow: 0 18px 48px rgba(72, 27, 78, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #090613;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 10px max(20px, calc((100vw - 1160px) / 2));
  background: rgba(9, 6, 19, 0.94);
  border-bottom: 1px solid rgba(196, 85, 199, 0.28);
  backdrop-filter: blur(16px);
}

.brand img,
.footer-brand img {
  height: 48px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  border-radius: 6px;
  padding: 10px 12px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(196, 85, 199, 0.16);
  outline: none;
}

.site-nav a[aria-current="page"] {
  background: rgba(196, 85, 199, 0.2);
  color: var(--white);
}

.site-nav a.is-active {
  background: rgba(196, 85, 199, 0.2);
  color: var(--white);
}

.nav-item {
  position: relative;
}

.nav-has-submenu::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 14px;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-parent::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.82;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 2;
  display: grid;
  min-width: 280px;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(196, 85, 199, 0.28);
  border-radius: 8px;
  background: rgba(9, 6, 19, 0.98);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
  visibility: hidden;
}

.nav-has-submenu:hover .nav-submenu,
.nav-has-submenu:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.nav-submenu a {
  display: block;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible,
.nav-submenu a[aria-current="page"] {
  background: rgba(196, 85, 199, 0.18);
  color: var(--white);
}

.site-nav .nav-cta {
  margin-left: 6px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 0 24px rgba(196, 85, 199, 0.22);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--coral);
}

.site-nav .nav-cta[aria-current="page"] {
  background: var(--coral);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(3) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(580px, calc(100svh - 150px), 720px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #090613;
  color: var(--white);
  isolation: isolate;
  padding: 74px 0 58px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 6, 19, 0.98) 0%, rgba(9, 6, 19, 0.88) 42%, rgba(9, 6, 19, 0.54) 100%),
    linear-gradient(0deg, rgba(9, 6, 19, 0.16), rgba(9, 6, 19, 0.16));
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.scene-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 85, 199, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 85, 199, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
}

.hero-glow {
  position: absolute;
  right: -10vw;
  bottom: 8%;
  width: min(760px, 58vw);
  height: min(480px, 48vw);
  transform: rotate(-12deg);
  background: linear-gradient(115deg, rgba(255, 46, 53, 0.7), rgba(196, 85, 199, 0.48), rgba(95, 86, 216, 0.22));
  opacity: 0.42;
}

.hero-mascot {
  position: absolute;
  right: max(-44px, calc((100vw - 1280px) / 2));
  bottom: -170px;
  width: min(570px, 43vw);
  max-width: none;
}

.dashboard-surface {
  position: absolute;
  right: max(30px, calc((100vw - 1160px) / 2));
  top: 50%;
  width: min(560px, 48vw);
  transform: translateY(-48%) rotate(-2deg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(248, 247, 241, 0.94);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
  color: var(--ink);
}

.surface-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid #d8dbd1;
}

.surface-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.surface-top span:nth-child(2) {
  background: var(--amber);
}

.surface-top span:nth-child(3) {
  background: var(--green-bright);
}

.surface-top strong {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.8rem;
}

.surface-body {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-row div {
  min-height: 92px;
  padding: 14px;
  border: 1px solid #dfe2d9;
  border-radius: 8px;
  background: var(--white);
}

.metric-row small,
.price small {
  display: block;
  color: var(--muted);
}

.metric-row strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.flow-board {
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  align-items: center;
  gap: 8px;
}

.flow-board span {
  display: grid;
  min-height: 54px;
  place-items: center;
  border: 1px solid #dfe2d9;
  border-radius: 8px;
  background: #f8f7f1;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.flow-board i {
  height: 2px;
  background: var(--green-bright);
  position: relative;
}

.flow-board i::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -4px;
  width: 0;
  height: 0;
  border-left: 7px solid var(--green-bright);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.chart-lines {
  display: flex;
  align-items: end;
  gap: 12px;
  min-height: 120px;
  padding: 14px 16px;
  border: 1px solid #dfe2d9;
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg, rgba(17, 19, 17, 0.06) 0 1px, transparent 1px 28px),
    var(--white);
}

.chart-lines b {
  flex: 1;
  min-width: 24px;
  border-radius: 5px 5px 0 0;
  background: var(--green);
}

.chart-lines b:nth-child(2n) {
  background: var(--coral);
}

.chart-lines b:nth-child(3n) {
  background: var(--blue);
}

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

.sync-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  border: 1px solid #dfe2d9;
  border-radius: 8px;
  padding: 10px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 750;
}

.sync-list i {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-bright);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1160px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.7rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 660px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 900;
  line-height: 1.1;
}

.hero-copy {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  background: var(--green-bright);
  color: var(--white);
  box-shadow: 0 12px 36px rgba(196, 85, 199, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--coral);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-outline {
  width: 100%;
  border-color: var(--ink);
  background: var(--white);
  color: var(--ink);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 160px));
  gap: 18px;
  margin: 42px 0 0;
}

.hero-stats div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-stats dt {
  font-size: 1.55rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.proof-band {
  background: linear-gradient(90deg, #39123f 0%, #8d3d95 48%, #ff2e35 100%);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.brand-showcase {
  overflow: hidden;
  padding: 76px 0;
  background:
    linear-gradient(120deg, rgba(9, 6, 19, 1), rgba(33, 21, 43, 0.98)),
    #090613;
  color: var(--white);
}

.showcase-layout {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 390px);
  gap: 48px;
  align-items: center;
}

.showcase-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  line-height: 1.02;
}

.showcase-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.showcase-copy p:not(.eyebrow) + p:not(.eyebrow) {
  margin-top: 12px;
}

.showcase-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(196, 85, 199, 0.38);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.showcase-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
}

.proof-list span {
  display: grid;
  min-height: 72px;
  place-items: center;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 850;
}

.section {
  padding: 86px 0;
}

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

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

.section-ink {
  background: #090613;
  color: var(--white);
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 72px 0 78px;
  background:
    linear-gradient(90deg, rgba(9, 6, 19, 0.98), rgba(57, 18, 63, 0.86)),
    repeating-linear-gradient(90deg, rgba(196, 85, 199, 0.12) 0 1px, transparent 1px 54px),
    var(--ink);
  color: var(--white);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: max(-120px, calc((100vw - 1260px) / 2));
  bottom: -280px;
  z-index: -1;
  width: min(470px, 38vw);
  aspect-ratio: 2 / 3;
  background: url("assets/panda-mascot-full.jpg") bottom center / contain no-repeat;
  opacity: 0.24;
}

.page-hero .container {
  max-width: 980px;
}

.page-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
  text-align: center;
}

.section-heading:not(.align-left) {
  margin-inline: auto;
}

.section-heading.align-left {
  text-align: left;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.contact-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-ink .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

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

.service-card,
.price-card,
.process-grid article,
.contact-form,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  min-height: 244px;
  padding: 24px;
}

.card-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 900;
}

.service-card:nth-child(2) .card-icon,
.service-card:nth-child(5) .card-icon {
  background: var(--green);
}

.service-card:nth-child(3) .card-icon {
  background: var(--coral);
}

.service-card:nth-child(4) .card-icon,
.service-card:nth-child(6) .card-icon {
  background: var(--blue);
}

.service-card h2,
.service-card h3,
.process-grid h3,
.price-card h2,
.price-card h3 {
  margin: 18px 0 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.service-card p,
.process-grid p,
.price-card li,
details p {
  margin: 0;
  color: var(--muted);
}

.detail-grid .service-card {
  min-height: 268px;
}

.content-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 26px;
  box-shadow: 0 8px 30px rgba(17, 19, 17, 0.06);
}

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

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

.seo-content {
  border-bottom: 1px solid rgba(228, 207, 230, 0.78);
}

.seo-copy {
  display: grid;
  gap: 14px;
}

.seo-copy p + p {
  margin-top: 0;
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
}

.keyword-list li {
  border: 1px solid rgba(196, 85, 199, 0.28);
  border-radius: 8px;
  background: rgba(196, 85, 199, 0.08);
  color: var(--ink-soft);
  padding: 9px 11px;
  font-size: 0.9rem;
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: center;
}

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

.industry-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

a.industry-item {
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

a.industry-item:hover,
a.industry-item:focus-visible {
  border-color: rgba(196, 85, 199, 0.58);
  background: rgba(196, 85, 199, 0.16);
  outline: none;
  transform: translateY(-1px);
}

.industry-icon {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(196, 85, 199, 0.28);
  color: var(--white);
}

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

.industry-item b {
  font-size: 0.94rem;
  line-height: 1.2;
}

.industry-item:nth-child(3n) .industry-icon {
  background: rgba(255, 46, 53, 0.28);
}

.industry-item:nth-child(4n) .industry-icon {
  background: rgba(244, 167, 67, 0.26);
}

.industry-item:nth-child(5n) .industry-icon {
  background: rgba(95, 86, 216, 0.3);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 26px;
  box-shadow: 0 8px 30px rgba(17, 19, 17, 0.06);
}

.price-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.badge {
  align-self: flex-start;
  border-radius: 6px;
  background: var(--green);
  color: var(--white);
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 900;
}

.price-top p {
  margin: 0;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.price-top h2,
.price-top h3 {
  margin-top: 8px;
}

.price span {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 950;
}

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

.price-card li {
  position: relative;
  padding-left: 24px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--green-bright);
}

.pricing-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.process-grid article {
  padding: 24px;
  background: var(--paper);
}

.process-grid span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: var(--coral);
  color: var(--white);
  font-weight: 900;
}

.process-grid article:nth-child(2) span {
  background: var(--green);
}

.process-grid article:nth-child(3) span {
  background: var(--blue);
}

.process-grid article:nth-child(4) span {
  background: var(--ink);
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

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

.check-list li {
  position: relative;
  min-height: 54px;
  padding: 15px 16px 15px 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink-soft);
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--green-bright);
}

.value-grid,
.sector-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-card,
.sector-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.value-card span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.value-card h2,
.sector-card h2 {
  margin: 18px 0 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.value-card p,
.sector-card p {
  margin: 0;
  color: var(--muted);
}

.sector-card {
  min-height: 190px;
  border-top: 5px solid var(--green-bright);
}

.sector-card-link {
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.sector-card-link:hover,
.sector-card-link:focus-visible {
  border-color: rgba(196, 85, 199, 0.62);
  box-shadow: var(--shadow);
  outline: none;
  transform: translateY(-2px);
}

.sector-card-link span {
  margin-top: auto;
  padding-top: 18px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 900;
}

.sector-card:nth-child(3n) {
  border-top-color: var(--coral);
}

.sector-card:nth-child(4n) {
  border-top-color: var(--blue);
}

.feature-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
  color: var(--muted);
}

.feature-list li {
  position: relative;
  padding-left: 18px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--green-bright);
}

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

.workflow-step {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
}

.workflow-step span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: var(--green-bright);
  color: var(--white);
  font-weight: 900;
}

.workflow-step:nth-child(2) span {
  background: var(--coral);
}

.workflow-step:nth-child(3) span {
  background: var(--amber);
}

.workflow-step:nth-child(4) span {
  background: var(--blue);
}

.workflow-step h3 {
  margin: 18px 0 8px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.workflow-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.tag-cloud li {
  border: 1px solid rgba(196, 85, 199, 0.3);
  border-radius: 8px;
  background: rgba(196, 85, 199, 0.08);
  color: var(--ink-soft);
  padding: 9px 11px;
  font-size: 0.9rem;
  font-weight: 850;
}

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

.blog-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(17, 19, 17, 0.06);
  color: inherit;
  flex-direction: column;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

a.blog-card:hover,
a.blog-card:focus-visible {
  border-color: rgba(196, 85, 199, 0.62);
  box-shadow: var(--shadow);
  outline: none;
  transform: translateY(-2px);
}

.blog-card-empty {
  grid-column: span 2;
}

.blog-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  display: flex;
  gap: 12px;
  padding: 22px;
  flex: 1;
  flex-direction: column;
}

.blog-card-meta {
  margin: 0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.18;
}

.blog-card p:not(.blog-card-meta) {
  margin: 0;
  color: var(--muted);
}

.blog-article-hero .container {
  max-width: 980px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.article-meta span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  padding: 8px 10px;
  font-size: 0.86rem;
  font-weight: 850;
}

.article-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
  box-shadow: 0 8px 30px rgba(17, 19, 17, 0.06);
}

.article-toc strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.article-toc a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.article-toc a:hover,
.article-toc a:focus-visible {
  color: var(--green);
  outline: none;
}

.article-content {
  max-width: 820px;
}

.article-content > p {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.78;
}

.article-content h2 {
  margin: 42px 0 14px;
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.article-featured-image,
.article-image {
  margin: 0 0 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.article-featured-image img,
.article-image img {
  width: 100%;
  height: auto;
}

.article-image {
  margin-top: 34px;
}

.article-image figcaption {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 13px 16px;
  font-size: 0.92rem;
  font-weight: 750;
}

.article-callout {
  display: grid;
  gap: 18px;
  margin: 34px 0;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-panel h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

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

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.compare-table caption {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
  text-align: left;
}

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

.compare-table th {
  background: var(--ink);
  color: var(--white);
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.contact-page-section {
  padding-top: 74px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
}

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

details {
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

summary::marker {
  color: var(--green);
}

details p {
  padding-top: 12px;
}

.contact-section {
  background: var(--ink);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: start;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-links a {
  color: var(--green-bright);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 850;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.recaptcha-field {
  min-height: 78px;
  overflow: hidden;
}

.recaptcha-field .g-recaptcha {
  transform-origin: left top;
}

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

.contact-form textarea {
  resize: vertical;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  min-height: 24px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-status[data-state="success"] {
  color: var(--green);
}

.form-status[data-state="error"] {
  color: var(--coral);
}

.contact-form button:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(19, 160, 111, 0.14);
}

.site-footer {
  background: #0b0c0b;
  color: rgba(255, 255, 255, 0.7);
  padding: 28px 0;
}

.mobile-contact-bar {
  display: none;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--green-bright);
  outline: none;
}

.footer-inner p {
  max-width: 640px;
  margin: 0;
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 16px auto;
    display: grid;
    gap: 6px;
    max-height: calc(100svh - 96px);
    overflow-y: auto;
    padding: 14px;
    border: 1px solid rgba(196, 85, 199, 0.32);
    border-radius: 8px;
    background: rgba(9, 6, 19, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .nav-item {
    display: grid;
    gap: 4px;
  }

  .nav-has-submenu::after {
    display: none;
  }

  .nav-parent {
    justify-content: space-between;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    padding: 6px;
    border-color: rgba(196, 85, 199, 0.22);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-submenu a {
    padding: 10px 12px 10px 24px;
    font-size: 0.9rem;
    white-space: normal;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero-mascot {
    right: -120px;
    bottom: -160px;
    width: 500px;
    opacity: 0.48;
  }

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

  .showcase-media {
    max-width: 390px;
    margin-inline: auto;
  }

  .service-grid,
  .blog-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .two-column,
  .article-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .article-toc {
    position: static;
  }

  .process-grid,
  .workflow-grid,
  .value-grid,
  .sector-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 700px) {
  body {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

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

  .site-header {
    min-height: 68px;
    padding: 8px 14px;
  }

  .brand img,
  .footer-brand img {
    height: 40px;
  }

  .site-nav {
    inset: 68px 14px auto;
  }

  .hero {
    min-height: auto;
    padding: 46px 0 36px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(9, 6, 19, 0.98) 0%, rgba(9, 6, 19, 0.86) 100%),
      linear-gradient(0deg, rgba(9, 6, 19, 0.12), rgba(9, 6, 19, 0.12));
  }

  .hero-glow {
    right: -180px;
    bottom: 4%;
    width: 420px;
    height: 360px;
    opacity: 0.34;
  }

  .hero-mascot {
    right: -205px;
    bottom: -120px;
    width: 430px;
    opacity: 0.26;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.7rem);
  }

  .hero-subtitle {
    font-size: clamp(1.18rem, 6vw, 1.65rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

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

  .hero-stats {
    display: none;
  }

  .section {
    padding: 58px 0;
  }

  .brand-showcase {
    padding: 58px 0;
  }

  .showcase-media img {
    height: 500px;
  }

  .page-hero {
    padding: 46px 0 52px;
  }

  .page-hero::after {
    right: -210px;
    bottom: -260px;
    width: 410px;
    opacity: 0.16;
  }

  .page-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.6rem);
  }

  .section-heading {
    margin-bottom: 24px;
    text-align: left;
  }

  .service-grid,
  .blog-grid,
  .pricing-grid,
  .process-grid,
  .workflow-grid,
  .value-grid,
  .sector-card-grid,
  .industry-panel,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .blog-card-empty {
    grid-column: auto;
  }

  .service-card,
  .price-card,
  .process-grid article,
  .contact-form {
    padding: 20px;
  }

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

  .proof-list span {
    min-height: 58px;
    font-size: 0.82rem;
  }

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

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-panel .button {
    width: 100%;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    border: 1px solid rgba(196, 85, 199, 0.36);
    border-radius: 14px;
    background: rgba(9, 6, 19, 0.9);
    padding: 8px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(16px);
  }

  .mobile-contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 0;
    min-height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    color: var(--white);
    padding: 9px 10px;
    line-height: 1.08;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  }

  .mobile-contact-call {
    background: linear-gradient(135deg, var(--green-bright), var(--coral));
  }

  .mobile-contact-whatsapp {
    background: linear-gradient(135deg, #13a06f, #0b7d57);
  }

  .mobile-contact-icon {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.16);
  }

  .mobile-contact-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-contact-text {
    min-width: 0;
  }

  .mobile-contact-text strong,
  .mobile-contact-text small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-contact-text strong {
    font-size: 0.92rem;
    font-weight: 950;
  }

  .mobile-contact-text small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
    font-weight: 800;
  }
}

@media (max-width: 370px) {
  .mobile-contact-bar {
    right: 8px;
    left: 8px;
    gap: 7px;
    padding: 7px;
  }

  .mobile-contact-button {
    gap: 7px;
    padding: 8px;
  }

  .mobile-contact-icon {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }

  .mobile-contact-text strong {
    font-size: 0.84rem;
  }

  .mobile-contact-text small {
    font-size: 0.66rem;
  }

  .recaptcha-field {
    min-height: 70px;
  }

  .recaptcha-field .g-recaptcha {
    transform: scale(0.9);
  }
}

@media (max-width: 340px) {
  .recaptcha-field {
    min-height: 64px;
  }

  .recaptcha-field .g-recaptcha {
    transform: scale(0.82);
  }
}

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