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

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

.surface-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.038);
  transition: border-color 200ms ease, background 200ms ease, transform 260ms var(--ease-spring), box-shadow 260ms ease;
}

.surface-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

.service-card {
  display: grid;
  min-height: 260px;
  align-content: start;
  padding: 20px;
}

.service-card::after {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--service-glow, rgba(156, 124, 255, 0.16)), transparent 68%);
  content: "";
  transition: transform 400ms var(--ease-out);
}

.service-card:hover::after {
  transform: scale(1.4);
}

.service-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  background: linear-gradient(145deg, var(--icon-a), var(--icon-b));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-size: 18px;
}

.service-card h3 {
  margin: 18px 0 8px;
  font-size: 17px;
}

.service-card > p {
  min-height: 56px;
  margin-bottom: 14px;
  color: var(--ink-muted);
  font-size: 11px;
  line-height: 1.6;
}

.service-outcome {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--ink-soft);
  font-size: 10px;
}

.service-outcome::before {
  color: var(--green);
  content: "↗";
}

.service-features {
  gap: 6px;
  margin: 14px 0 0;
}

.service-features li {
  font-size: 9px;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 16px;
  padding-top: 14px;
}

.service-footer span {
  color: var(--ink-muted);
  font-size: 9px;
}

.service-footer strong {
  font-size: 11px;
}

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

.process-step {
  position: relative;
  min-height: 150px;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  padding: 17px;
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: 31px;
  right: -9px;
  z-index: 2;
  color: var(--ink-muted);
  content: "→";
  font-size: 12px;
}

.process-step > span {
  color: var(--violet-bright);
  font-family: var(--font-mono);
  font-size: 10px;
}

.process-step h3 {
  margin: 17px 0 7px;
  font-size: 14px;
}

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

.filter-bar {
  position: sticky;
  z-index: 5;
  top: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--stroke);
  border-radius: 15px;
  background: rgba(15, 16, 23, 0.82);
  margin-bottom: 18px;
  padding: 8px;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.filter-search {
  position: relative;
  display: flex;
  min-width: 180px;
  flex: 1;
  align-items: center;
}

.filter-search > span {
  position: absolute;
  left: 10px;
  color: var(--ink-muted);
  font-size: 17px;
}

.filter-search input,
.filter-select,
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  outline: 0;
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.filter-search input {
  height: 38px;
  padding: 0 12px 0 34px;
}

.filter-select {
  width: auto;
  height: 38px;
  padding: 0 31px 0 11px;
}

.filter-search input:focus,
.filter-select:focus,
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: rgba(156, 124, 255, 0.62);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 0 0 3px rgba(156, 124, 255, 0.1);
}

.filter-count {
  color: var(--ink-muted);
  font-size: 10px;
  padding: 0 8px;
  white-space: nowrap;
}

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

.catalog-card {
  display: grid;
  grid-template-rows: 145px minmax(0, 1fr);
}

.catalog-visual,
.project-visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, color-mix(in srgb, var(--accent, #9c7cff) 40%, transparent), transparent 36%),
    linear-gradient(145deg, #27283a, #101118 72%);
}

.catalog-visual::before {
  position: absolute;
  top: 18px;
  right: 16px;
  bottom: -15px;
  left: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px 10px 0 0;
  background: rgba(8, 9, 14, 0.76);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  content: "";
  transform: perspective(500px) rotateX(3deg);
}

.catalog-visual__chrome {
  position: absolute;
  z-index: 1;
  top: 24px;
  right: 22px;
  left: 22px;
  display: flex;
  gap: 3px;
}

.catalog-visual__chrome i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
}

.catalog-visual__mock {
  position: absolute;
  z-index: 1;
  top: 44px;
  right: 28px;
  bottom: 0;
  left: 28px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 7px;
}

.catalog-visual__copy {
  padding-top: 4px;
}

.catalog-visual__copy span {
  display: block;
  height: 5px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  margin-bottom: 5px;
}

.catalog-visual__copy span:nth-child(1) {
  width: 45%;
  background: var(--accent, #9c7cff);
}

.catalog-visual__copy span:nth-child(2) {
  width: 88%;
  height: 9px;
}

.catalog-visual__copy span:nth-child(3) {
  width: 72%;
  height: 9px;
}

.catalog-visual__copy span:nth-child(4) {
  width: 56%;
  margin-top: 11px;
}

.catalog-visual__image {
  position: relative;
  overflow: hidden;
  border-radius: 7px 7px 0 0;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent, #9c7cff) 62%, #fff 3%), rgba(255, 255, 255, 0.03)),
    #25263a;
}

.catalog-visual__image::before,
.catalog-visual__image::after {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  content: "";
}

.catalog-visual__image::before {
  width: 66px;
  height: 66px;
  top: 21px;
  right: -10px;
}

.catalog-visual__image::after {
  width: 38px;
  height: 38px;
  left: 9px;
  bottom: 8px;
}

.catalog-card__body {
  display: grid;
  align-content: start;
  padding: 17px;
}

.catalog-card__meta,
.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.catalog-card__meta span:first-child,
.project-meta span:first-child {
  color: var(--violet-bright);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-card__meta span:last-child,
.project-meta span:last-child {
  color: var(--ink-muted);
  font-size: 9px;
}

.catalog-card h3 {
  margin-bottom: 7px;
  font-size: 16px;
}

.catalog-card p {
  min-height: 49px;
  margin-bottom: 13px;
  color: var(--ink-muted);
  font-size: 10px;
  line-height: 1.55;
}

.catalog-card .catalog-card__audience {
  min-height: 0;
  border-left: 2px solid color-mix(in srgb, var(--violet) 65%, transparent);
  font-size: 9px;
  margin: -2px 0 13px;
  padding-left: 9px;
}

.catalog-card__audience strong {
  color: var(--ink-soft);
}

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.feature-chips span {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink-soft);
  font-size: 8px;
  padding: 5px 7px;
}

.catalog-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 14px;
  padding-top: 13px;
}

.catalog-card__specs span,
.catalog-card__specs strong {
  display: block;
}

.catalog-card__specs span {
  color: var(--ink-muted);
  font-size: 8px;
}

.catalog-card__specs strong {
  margin-top: 2px;
  font-size: 10px;
}

.catalog-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 13px;
}

.empty-state {
  grid-column: 1 / -1;
  display: grid;
  min-height: 260px;
  place-items: center;
  border: 1px dashed var(--stroke);
  border-radius: 18px;
  color: var(--ink-muted);
  text-align: center;
}

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

.project-card {
  display: grid;
  grid-template-rows: 250px 1fr;
}

.project-card.featured {
  grid-column: span 2;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: minmax(340px, auto);
}

.project-visual {
  min-height: 220px;
}

.project-browser {
  position: absolute;
  top: 36px;
  right: 24px;
  bottom: -22px;
  left: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px 12px 0 0;
  background: #f5f6fa;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transform: perspective(800px) rotateX(2deg) rotateY(-2deg);
}

.project-browser__bar {
  display: flex;
  height: 21px;
  align-items: center;
  gap: 3px;
  background: #dadde5;
  padding: 0 7px;
}

.project-browser__bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #afb2bb;
}

.project-browser__bar span {
  min-width: 0;
  overflow: hidden;
  color: #777b86;
  font-size: 6px;
  margin-left: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-browser__page {
  display: grid;
  height: calc(100% - 21px);
  grid-template-columns: 0.75fr 1.25fr;
  background: #fff;
}

.project-browser__left {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 14px;
}

.project-browser__left small,
.project-browser__left strong,
.project-browser__left span {
  display: block;
  max-width: 100%;
}

.project-browser__left small {
  overflow: hidden;
  color: var(--accent);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.project-browser__left strong {
  color: #272938;
  font-size: clamp(10px, 1.5vw, 18px);
  line-height: 1.05;
  margin: 6px 0;
}

.project-browser__left span {
  color: #777b86;
  font-size: 7px;
}

.project-browser__left i {
  width: 42%;
  height: 15px;
  border-radius: 5px;
  background: var(--accent);
  margin-top: 14px;
}

.project-browser__right {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 65%, #fafafa), #ebedf6);
}

.project-browser__right > strong {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(24px, 5vw, 58px);
  letter-spacing: -0.08em;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%);
}

.project-browser__right::before,
.project-browser__right::after {
  position: absolute;
  border: 12px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  content: "";
}

.project-browser__right::before {
  width: 190px;
  height: 190px;
  top: 15%;
  right: -35px;
}

.project-browser__right::after {
  width: 90px;
  height: 90px;
  bottom: -15px;
  left: 15%;
}

.project-card__body {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.project-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.project-card p {
  margin-bottom: 17px;
  color: var(--ink-muted);
  font-size: 11px;
  line-height: 1.6;
}

.project-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: auto;
}

.project-metric {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  padding: 9px;
}

.project-metric strong,
.project-metric span {
  display: block;
}

.project-metric strong {
  margin-bottom: 2px;
  font-size: 14px;
}

.project-metric span {
  color: var(--ink-muted);
  font-size: 8px;
}

.project-card .text-action {
  align-self: flex-start;
  font-size: 11px;
  margin-top: 16px;
}

.detail-back {
  margin-bottom: 20px;
}

.project-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: center;
}

.project-detail-hero h1 {
  margin: 13px 0 14px;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
}

.project-detail-hero p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.project-detail-visual {
  min-height: 380px;
  border: 1px solid var(--stroke);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 0, color-mix(in srgb, var(--accent) 44%, transparent), transparent 34%),
    linear-gradient(145deg, #252639, #0c0e14);
  position: relative;
  overflow: hidden;
}

.project-detail-visual .project-browser {
  top: 55px;
  right: -20px;
  bottom: 24px;
  left: 38px;
}

.detail-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.detail-panel {
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  padding: 20px;
}

.detail-panel h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

.detail-panel p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 11px;
  line-height: 1.7;
}

.project-tech-label {
  margin-top: 22px;
}

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

.check-list li {
  position: relative;
  color: var(--ink-soft);
  font-size: 11px;
  padding-left: 20px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 10px;
}

.gallery-frame {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--accent) 48%, transparent), transparent 36%),
    linear-gradient(145deg, #26283a, #11121a);
}

.gallery-frame::after {
  position: absolute;
  inset: 18% 10% -12%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  background: rgba(10, 11, 16, 0.68);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.24);
  content: "";
}

.project-scope-frame__content {
  position: absolute;
  z-index: 2;
  inset: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.project-scope-frame__content span {
  color: var(--violet-bright);
  font-family: var(--font-mono);
  font-size: 9px;
  margin-bottom: auto;
}

.project-scope-frame__content strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.15;
  margin-bottom: 5px;
}

.project-scope-frame__content small {
  color: var(--ink-muted);
  font-size: 8px;
}

.testimonial-quote {
  position: relative;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  padding: 24px;
}

.testimonial-quote::before {
  color: rgba(156, 124, 255, 0.38);
  content: "“";
  font-family: Georgia, serif;
  font-size: 54px;
  line-height: 0.8;
}

.testimonial-quote blockquote {
  margin: 12px 0 18px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--avatar-a, #8d6cff), var(--avatar-b, #3e308d));
  font-size: 10px;
  font-weight: 700;
}

.testimonial-person strong,
.testimonial-person span {
  display: block;
}

.testimonial-source {
  display: inline-flex;
  font-size: 9px;
  margin-top: 14px;
}

.testimonial-person strong {
  font-size: 10px;
}

.testimonial-person span {
  color: var(--ink-muted);
  font-size: 8px;
}

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

.article-card {
  display: grid;
  grid-template-rows: 140px 1fr;
}

.article-cover {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 25%, color-mix(in srgb, var(--accent) 55%, transparent), transparent 34%),
    linear-gradient(145deg, #292a3c, #101117);
}

.article-cover::before {
  width: 78px;
  height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  content: attr(data-glyph);
  display: grid;
  place-items: center;
  font-size: 26px;
  transform: rotate(-8deg);
}

.article-card__body {
  padding: 17px;
}

.article-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-muted);
  font-size: 8px;
  margin-bottom: 10px;
}

.article-card__meta span:first-child {
  color: var(--violet-bright);
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.article-card h3 {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.2;
}

.article-card p {
  margin-bottom: 13px;
  color: var(--ink-muted);
  font-size: 10px;
  line-height: 1.55;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.article-tags span {
  color: var(--ink-muted);
  font-size: 8px;
}

.article-tags span::before {
  content: "#";
}

.article-reading {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px);
}

.article-reading h1 {
  margin: 14px 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
}

.article-reading__lead {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.article-reading__body {
  color: #d5d6df;
  font-size: 14px;
  line-height: 1.85;
}

.article-reading__body h2 {
  margin: 40px 0 14px;
  font-size: 24px;
}

.article-reading__body p {
  margin-bottom: 20px;
}

.article-reading__body blockquote {
  border-left: 2px solid var(--violet);
  color: var(--ink-soft);
  font-size: 16px;
  padding: 4px 0 4px 20px;
  margin: 30px 0;
}

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

.pricing-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  border: 1px solid var(--stroke);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  padding: 22px;
}

.pricing-card.popular {
  border-color: rgba(156, 124, 255, 0.42);
  background:
    radial-gradient(circle at 100% 0, rgba(156, 124, 255, 0.16), transparent 32%),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 46px rgba(62, 41, 130, 0.2);
}

.pricing-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 25px;
}

.pricing-label > span:first-child {
  color: var(--violet-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.popular-pill {
  border-radius: 99px;
  background: rgba(156, 124, 255, 0.16);
  color: #d9d0ff;
  font-size: 8px;
  padding: 5px 7px;
}

.pricing-card h3 {
  margin: 18px 0 7px;
  font-size: 24px;
}

.pricing-card > p {
  min-height: 50px;
  color: var(--ink-muted);
  font-size: 10px;
  line-height: 1.6;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 8px 0 20px;
}

.price strong {
  font-size: 38px;
  font-weight: 560;
  letter-spacing: -0.06em;
}

.price span {
  color: var(--ink-muted);
  font-size: 9px;
}

.pricing-card .check-list {
  flex: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 17px;
}

.pricing-card .check-list li {
  font-size: 10px;
}

.pricing-card .button {
  width: 100%;
  margin-top: 18px;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.028);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 620;
  padding: 13px 16px;
  text-align: left;
}

.faq-question span {
  color: var(--ink-muted);
  font-size: 19px;
  font-weight: 300;
  transition: transform 240ms var(--ease-out);
}

.faq-item.is-open .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms var(--ease-out);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 11px;
  line-height: 1.7;
  padding: 0 16px 16px;
}

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

.product-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 20px;
}

.product-glyph {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  background: linear-gradient(145deg, var(--icon-a), var(--icon-b));
  font-size: 20px;
}

.product-card h3 {
  margin: 19px 0 8px;
  font-size: 18px;
}

.product-card p {
  color: var(--ink-muted);
  font-size: 10px;
  line-height: 1.6;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--ink-muted);
  font-size: 9px;
  margin-top: auto;
  padding-top: 15px;
}

.product-card__meta strong {
  color: var(--ink);
  font-size: 13px;
}

.product-card > .button {
  align-self: flex-start;
  margin-top: 14px;
}

.product-card__verified {
  color: var(--ink-muted);
  font-size: 8px;
  line-height: 1.5;
  margin-top: 15px;
}

.download-list {
  display: grid;
  gap: 9px;
}

.download-item {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--stroke);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
  padding: 13px;
  transition: border-color 160ms ease, background 160ms ease;
}

.download-item:hover {
  border-color: var(--stroke-strong);
  background: rgba(255, 255, 255, 0.055);
}

.download-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(145deg, var(--icon-a), var(--icon-b));
  font-size: 17px;
}

.download-item strong,
.download-item span {
  display: block;
}

.download-item strong {
  margin-bottom: 2px;
  font-size: 12px;
}

.download-item span {
  color: var(--ink-muted);
  font-size: 9px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(360px, 1.25fr);
  gap: 18px;
}

.contact-panel,
.inquiry-form {
  border: 1px solid var(--stroke);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  padding: clamp(20px, 3vw, 30px);
}

.contact-panel {
  display: flex;
  flex-direction: column;
}

.contact-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.contact-panel > p {
  color: var(--ink-muted);
  font-size: 11px;
  line-height: 1.7;
}

.contact-methods {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.contact-method {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  padding: 10px;
  transition: background 150ms ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.06);
}

.contact-method__icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--icon-a), var(--icon-b));
}

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

.contact-method strong {
  font-size: 10px;
}

.contact-method span {
  color: var(--ink-muted);
  font-size: 8px;
}

.contact-method > span:last-child {
  color: var(--ink-muted);
  font-size: 14px;
}

.location-card {
  position: relative;
  min-height: 130px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.05) 50%, transparent 51%) 0 0 / 36px 36px,
    linear-gradient(transparent 49%, rgba(255, 255, 255, 0.05) 50%, transparent 51%) 0 0 / 36px 36px,
    radial-gradient(circle at 62% 48%, rgba(156, 124, 255, 0.26), transparent 18%),
    #11131a;
  margin-top: auto;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 62%;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(145deg, var(--violet), #5339ba);
  box-shadow: 0 12px 24px rgba(70, 48, 160, 0.4);
  transform: translate(-50%, -70%) rotate(-45deg);
}

.map-pin span {
  transform: rotate(45deg);
}

.map-label {
  position: absolute;
  bottom: 11px;
  left: 12px;
  color: var(--ink-muted);
  font-size: 9px;
}

.inquiry-form h2 {
  margin-bottom: 7px;
  font-size: 24px;
}

.inquiry-form > p {
  color: var(--ink-muted);
  font-size: 10px;
  margin-bottom: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-field {
  display: grid;
  gap: 6px;
}

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

.form-field label {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 620;
}

.form-field input,
.form-field select {
  height: 42px;
  padding: 0 12px;
}

.form-field textarea {
  min-height: 108px;
  resize: vertical;
  padding: 11px 12px;
}

.form-field [aria-invalid="true"] {
  border-color: rgba(255, 95, 87, 0.72);
  box-shadow: 0 0 0 3px rgba(255, 95, 87, 0.08);
}

.field-error {
  min-height: 12px;
  color: #ff918b;
  font-size: 8px;
}

.form-consent {
  color: var(--ink-muted);
  font-size: 8px;
  line-height: 1.5;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.form-actions > span {
  color: var(--ink-muted);
  font-size: 8px;
}

.meeting-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(400px, 1.3fr);
  gap: 16px;
}

.meeting-info,
.calendar-picker {
  border: 1px solid var(--stroke);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  padding: 22px;
}

.meeting-info h2 {
  margin: 13px 0 10px;
  font-size: 28px;
}

.meeting-info p {
  color: var(--ink-muted);
  font-size: 10px;
  line-height: 1.7;
}

.meeting-facts {
  display: grid;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 20px;
  padding-top: 16px;
}

.meeting-fact {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 10px;
}

.meeting-fact span:first-child {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: rgba(156, 124, 255, 0.1);
  color: var(--violet-bright);
}

.consultation-request > h3 {
  font-size: 24px;
  margin: 10px 0 20px;
}

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

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 22px;
  padding-top: 18px;
}

.booking-note {
  color: var(--ink-muted);
  font-size: 8px;
  line-height: 1.6;
  margin: 13px 0 0;
}

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

.social-card {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  padding: 17px;
  transition: transform 220ms var(--ease-spring), background 180ms ease, border-color 180ms ease;
}

.social-card:hover {
  border-color: var(--stroke-strong);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.social-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--icon-a), var(--icon-b));
  font-size: 14px;
  font-weight: 700;
}

.social-card__top > span:last-child {
  color: var(--ink-muted);
  font-size: 15px;
}

.social-card h3 {
  margin: auto 0 4px;
  font-size: 14px;
}

.social-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 9px;
}

.skills-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.skill-pill {
  border: 1px solid var(--stroke);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink-soft);
  font-size: 10px;
  padding: 9px 11px;
}

.stat-dashboard {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}

.chart-card {
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  padding: 20px;
}

.chart-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.chart-card__header h3 {
  margin-bottom: 3px;
  font-size: 14px;
}

.chart-card__header p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 8px;
}

.chart-card__header strong {
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 10px;
}

.bar-chart {
  display: flex;
  height: 210px;
  align-items: flex-end;
  gap: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 100% 25%;
  padding: 0 8px 0;
}

.bar-chart span {
  position: relative;
  flex: 1;
  border-radius: 5px 5px 1px 1px;
  background: linear-gradient(180deg, var(--violet), rgba(79, 58, 173, 0.5));
  box-shadow: 0 0 18px rgba(135, 102, 255, 0.12);
}

.bar-chart span > strong {
  position: absolute;
  top: 7px;
  left: 50%;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-mono);
  font-size: 8px;
  transform: translateX(-50%);
}

.bar-chart span::after {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  color: var(--ink-muted);
  content: attr(data-label);
  font-size: 7px;
  transform: translateX(-50%);
}

.donut-wrap {
  display: grid;
  min-height: 210px;
  place-items: center;
}

.donut {
  position: relative;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--violet) 0 48%, var(--cyan) 48% 76%, var(--coral) 76% 91%, var(--green) 91%);
}

.donut::before {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: #15161f;
  content: "";
}

.donut div {
  position: relative;
  z-index: 1;
  text-align: center;
}

.donut strong,
.donut span {
  display: block;
}

.donut strong {
  font-size: 28px;
  letter-spacing: -0.05em;
}

.donut span {
  color: var(--ink-muted);
  font-size: 8px;
}

.resume-sheet {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px;
}

.resume-sidebar {
  border: 1px solid var(--stroke);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  padding: 22px;
}

.resume-monogram {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(145deg, #9c7cff, #3f2f94);
  box-shadow: 0 14px 30px rgba(68, 46, 160, 0.26);
  font-size: 24px;
  font-weight: 720;
  letter-spacing: -0.07em;
}

.resume-sidebar h2 {
  margin: 18px 0 5px;
  font-size: 28px;
}

.resume-sidebar > p {
  color: var(--ink-muted);
  font-size: 10px;
  line-height: 1.6;
}

.resume-contact {
  display: grid;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 18px;
  padding-top: 17px;
}

.resume-contact span {
  color: var(--ink-soft);
  font-size: 9px;
}

.resume-main h3 {
  margin: 0 0 18px;
  font-size: 16px;
}

.resume-role {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 18px;
  padding-bottom: 18px;
}

.resume-role time {
  color: var(--violet-bright);
  font-family: var(--font-mono);
  font-size: 9px;
}

.resume-role h4 {
  margin-bottom: 4px;
  font-size: 13px;
}

.resume-role span {
  color: var(--ink-muted);
  font-size: 9px;
}

.resume-role p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.6;
}

.case-study-card {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 0;
}

.case-study-number {
  position: relative;
  display: grid;
  min-height: 260px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle, color-mix(in srgb, var(--accent) 50%, transparent), transparent 55%),
    #171821;
}

.case-study-number strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 76px;
  font-weight: 520;
  letter-spacing: -0.08em;
}

.case-study-content {
  padding: 24px;
}

.case-study-content h3 {
  margin: 12px 0 9px;
  font-size: 22px;
}

.case-study-content > p {
  color: var(--ink-muted);
  font-size: 11px;
  line-height: 1.65;
}

.case-result {
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 17px;
  padding-top: 15px;
}

.case-result strong {
  font-size: 26px;
  letter-spacing: -0.05em;
}

.case-result span {
  color: var(--green);
  font-size: 9px;
}
