@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&display=swap");

:root {
  --font-family-base: "Sora", "Segoe UI", sans-serif;
  --header-nav-font-size: 0.94rem;
  --header-nav-font-weight: 600;
  --header-nav-line-height: 1.35;
  --header-nav-gap: 14px;
  --header-height: 96px;
  --footer-font-size: 0.95rem;
  --footer-line-height: 1.7;
  --footer-link-color: #5f584f;
  --bg: #f6f0e4;
  --surface: rgba(255, 252, 246, 0.96);
  --ink: #272321;
  --muted: #6d6459;
  --primary: #ffd95c;
  --primary-strong: #d2a420;
  --primary-2: #575252;
  --accent: #fff1bd;
  --accent-soft: #f6e4b2;
  --text-soft-strong: #5b5349;
  --line: #e5d9bc;
  --radius: 16px;
  --shadow: 0 18px 40px rgba(54, 43, 18, 0.11);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-family-base);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -20%, #ffe7a2 0, transparent 36%),
    radial-gradient(circle at 90% 12%, #d8d0cb 0, transparent 32%),
    linear-gradient(180deg, #f8f3e8 0, #f3ecde 100%),
    var(--bg);
  line-height: 1.65;
}

a {
  color: var(--primary-2);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(140deg, #3f3a3a, #262323);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 217, 92, 0.16);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 20px;
  padding: 8px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: clamp(252px, 23.4vw, 298.8px);
  aspect-ratio: 1286 / 512;
  overflow: visible;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
  display: block;
  filter: drop-shadow(0 8px 14px rgba(109, 86, 17, 0.16));
}

.brand-copy {
  display: none;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.9rem;
  letter-spacing: 0.1px;
}

.brand-copy small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.72rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.95rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--header-nav-gap);
}

.main-nav a {
  font-weight: var(--header-nav-font-weight);
  color: #fff;
  font-size: var(--header-nav-font-size);
  line-height: var(--header-nav-line-height);
}

.main-nav a:not(.button) {
  position: relative;
}

.main-nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

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

.main-nav a.is-active:not(.button) {
  color: #ffe08a;
}

.main-nav a.is-active:not(.button)::after {
  transform: scaleX(1);
  background: linear-gradient(90deg, #ffe08a, rgba(255, 224, 138, 0.12));
}

.main-nav a.button.is-active {
  box-shadow:
    0 16px 30px rgba(39, 35, 33, 0.22),
    0 0 0 1px rgba(255, 217, 92, 0.18) inset,
    0 0 30px rgba(255, 217, 92, 0.26);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, #4f4a49, #2f2c2c);
  color: var(--primary);
  border: none;
  border-radius: 11px;
  padding: 11px 17px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(39, 35, 33, 0.15);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

a.button,
.main-nav a.button {
  color: var(--primary);
}

.main-nav a.button {
  background: linear-gradient(140deg, #3f3a3a, #262323);
  border: 1px solid rgba(255, 217, 92, 0.24);
  box-shadow:
    0 12px 24px rgba(39, 35, 33, 0.18),
    0 0 0 1px rgba(255, 217, 92, 0.08) inset,
    0 0 22px rgba(255, 217, 92, 0.16);
}

.main-nav a.button:hover {
  box-shadow:
    0 16px 30px rgba(39, 35, 33, 0.22),
    0 0 0 1px rgba(255, 217, 92, 0.12) inset,
    0 0 28px rgba(255, 217, 92, 0.2);
}

.button.alt {
  background: rgba(255, 250, 238, 0.92);
  color: var(--primary-2);
  border: 1px solid #d8c79d;
}

.button:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(39, 35, 33, 0.18);
}

.section .card p .button + .button {
  margin-left: 10px;
}

.section .card p .button + .button.alt {
  margin-left: 10px;
}

.hero {
  padding: 88px 0 58px;
}

.hero-box {
  background:
    radial-gradient(circle at top right, rgba(255, 217, 92, 0.24), transparent 30%),
    radial-gradient(circle at 82% 26%, rgba(255, 222, 116, 0.2), transparent 22%),
    linear-gradient(145deg, rgba(255, 251, 242, 0.98), rgba(248, 240, 223, 0.96));
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 24px 54px rgba(54, 43, 18, 0.14);
  position: relative;
  overflow: hidden;
}

.hero-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 38%, transparent 62%, rgba(255, 217, 92, 0.08));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.82fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy p {
  max-width: 680px;
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta span,
.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 250, 238, 0.86);
  border: 1px solid rgba(210, 164, 32, 0.18);
  color: #5e554a;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: stretch;
}

.hero-aside-label {
  margin: 2px 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #7c6220;
}

.hero-aside-panel {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(59, 53, 50, 0.96), rgba(37, 34, 33, 0.97));
  border: 1px solid rgba(255, 217, 92, 0.16);
  box-shadow: 0 20px 40px rgba(39, 35, 33, 0.18);
}

.hero-aside-panel strong {
  display: block;
  margin-bottom: 6px;
  color: #ffe08a;
  font-size: 1rem;
}

.hero-aside-panel p {
  margin: 0;
  color: rgba(255, 246, 222, 0.88);
  font-size: 0.95rem;
  line-height: 1.65;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.kicker {
  display: inline-block;
  background: #fff4ca;
  border: 1px solid #e7cf86;
  color: #72530a;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

h1,
h2,
h3 {
  line-height: 1.25;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
}

.section {
  padding: 52px 0;
}

.lazy-section {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.card::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-soft), rgba(246, 228, 178, 0));
  opacity: 0.9;
}

.card:hover {
  transform: translateY(-2px);
  border-color: #d7bf7d;
  box-shadow: 0 20px 40px rgba(54, 43, 18, 0.14);
}

.card h2,
.card h3 {
  color: #2d2823;
}

.card p {
  color: var(--text-soft-strong);
}

.card li {
  color: var(--text-soft-strong);
}

.blog-detail-content {
  max-width: 980px;
}

.blog-featured-media {
  margin: 0 0 1.2rem;
  display: grid;
  gap: 0.65rem;
}

.blog-featured-shell {
  position: relative;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 12px;
  border-radius: 20px;
  border: 1px solid #deceb0;
  background:
    radial-gradient(circle at 85% 16%, rgba(255, 217, 92, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(255, 252, 246, 0.98), rgba(246, 237, 219, 0.94));
  box-shadow: 0 18px 36px rgba(39, 35, 33, 0.14);
}

.blog-featured-shell::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 14px;
  border: 1px solid rgba(210, 164, 32, 0.2);
  pointer-events: none;
}

.blog-featured-media.is-portrait .blog-featured-shell {
  width: min(100%, 540px);
}

.blog-featured-media.is-square .blog-featured-shell {
  width: min(100%, 620px);
}

.blog-featured-media.layout-left .blog-featured-shell {
  margin-left: 0;
  margin-right: auto;
  width: min(100%, 640px);
}

.blog-featured-media.layout-left .blog-featured-caption {
  margin-left: 0;
  margin-right: auto;
  width: min(100%, 640px);
}

.blog-featured-media.layout-bleed .blog-featured-shell {
  width: min(100%, 920px);
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  border-radius: 22px;
}

.blog-featured-media.layout-bleed .blog-featured-image {
  max-height: 560px;
  border-radius: 14px;
}

.blog-featured-media.layout-bleed .blog-featured-caption {
  width: min(100%, 920px);
}

.blog-featured-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  background: #0f1b2f;
  border-radius: 12px;
}

.blog-featured-media.is-landscape .blog-featured-image {
  max-height: 500px;
}

.blog-featured-media.is-portrait .blog-featured-image {
  max-height: 600px;
}

.blog-featured-caption {
  width: min(100%, 760px);
  margin: 0 auto;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
  color: #5f584f;
  font-size: 0.92rem;
}

.blog-featured-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #694d07;
  background: #ffe9a4;
  border: 1px solid #e3c97a;
}

@media (max-width: 900px) {
  .blog-featured-media.layout-left .blog-featured-shell,
  .blog-featured-media.layout-left .blog-featured-caption {
    width: min(100%, 760px);
    margin-left: auto;
    margin-right: auto;
  }

  .blog-featured-media.layout-bleed .blog-featured-shell,
  .blog-featured-media.layout-bleed .blog-featured-caption {
    width: min(100%, 760px);
  }
}

.blog-article-body {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.2rem, 2.4vw, 1.6rem);
  font-size: 1.03rem;
}

.blog-article-body > * {
  margin-top: 0;
  margin-bottom: 0;
}

.blog-article-body > * + * {
  margin-top: 0.95rem;
}

.blog-article-body h2,
.blog-article-body h3,
.blog-article-body h4 {
  color: #2e2924;
  letter-spacing: -0.01em;
}

.blog-article-body h2 {
  margin-top: 2rem;
  margin-bottom: 0.45rem;
  font-size: clamp(1.4rem, 2.25vw, 1.9rem);
}

.blog-article-body h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.35rem;
  font-size: clamp(1.2rem, 1.9vw, 1.46rem);
}

.blog-article-body h4 {
  margin-top: 1.2rem;
  margin-bottom: 0.3rem;
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
}

.blog-article-body p,
.blog-article-body li {
  line-height: 1.78;
  color: #4f4840;
}

.blog-article-body p,
.blog-article-body ul,
.blog-article-body ol,
.blog-article-body blockquote,
.blog-article-body pre,
.blog-article-body table,
.blog-article-body hr {
  max-width: 74ch;
  margin-left: auto;
  margin-right: auto;
}

.blog-article-body ul,
.blog-article-body ol {
  padding-left: 1.25rem;
}

.blog-article-body li + li {
  margin-top: 0.42rem;
}

.blog-article-body blockquote {
  margin-top: 1.1rem;
  margin-bottom: 1.1rem;
  padding: 0.8rem 1rem;
  border-left: 4px solid #d3b061;
  border-radius: 10px;
  background: rgba(255, 245, 219, 0.62);
  color: #4d473f;
}

.blog-article-body a {
  text-decoration: underline;
  text-decoration-thickness: 1.25px;
  text-underline-offset: 2px;
}

.blog-article-body hr {
  border: 0;
  border-top: 1px solid #dbc9a7;
}

.blog-article-body img,
.blog-article-body picture,
.blog-article-body figure,
.blog-article-body video,
.blog-article-body iframe,
.blog-article-body table {
  max-width: 100%;
}

.blog-article-body img,
.blog-article-body picture img {
  display: block;
  width: auto;
  max-width: min(100%, 860px);
  height: auto;
  margin: 1rem auto;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(39, 35, 33, 0.12);
}

.blog-article-body img.img-size-small,
.blog-article-body picture img.img-size-small {
  max-width: min(100%, 420px);
}

.blog-article-body img.img-size-medium,
.blog-article-body picture img.img-size-medium {
  max-width: min(100%, 640px);
}

.blog-article-body img.img-size-large,
.blog-article-body picture img.img-size-large {
  max-width: min(100%, 860px);
}

.blog-article-body figure {
  margin: 1rem auto;
}

.blog-article-body figcaption {
  margin: 0.4rem auto 0;
  max-width: 74ch;
  font-size: 0.9rem;
  color: #6a6054;
  text-align: center;
}

.blog-article-body iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  margin: 1rem auto;
  border: 0;
  border-radius: 12px;
}

.blog-article-body table {
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
  width: 100%;
  background: rgba(255, 252, 246, 0.9);
  border: 1px solid #dfcfb1;
  border-radius: 10px;
}

.blog-article-body th,
.blog-article-body td {
  padding: 0.62rem 0.72rem;
  border-bottom: 1px solid #e5d8be;
  text-align: left;
}

.blog-article-body th {
  background: rgba(255, 238, 187, 0.36);
  color: #3f382f;
}

.blog-article-body tr:last-child td {
  border-bottom: 0;
}

.blog-listing-toolbar,
.blog-listing-tags {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.blog-listing-pagination {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.blog-listing-tags {
  margin-top: 1.5rem;
}

.blog-listing-empty {
  grid-column: 1 / -1;
}

.blog-listing-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 100%;
}

.blog-listing-title {
  margin: 0;
  font-size: clamp(1.14rem, 1.7vw, 1.4rem);
  line-height: 1.35;
}

.blog-listing-title a {
  color: #2f2a25;
  text-decoration: none;
}

.blog-listing-title a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1.2px;
  text-underline-offset: 2px;
}

.blog-listing-excerpt {
  margin: 0;
  color: #575045;
  line-height: 1.72;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-listing-categories {
  margin: 0.1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.blog-listing-categories a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.18rem 0.58rem;
  font-size: 0.78rem;
  line-height: 1.3;
  color: #5e4c22;
  background: rgba(255, 239, 191, 0.82);
  border: 1px solid rgba(210, 164, 32, 0.22);
}

.blog-listing-categories a:hover {
  text-decoration: none;
  background: rgba(255, 234, 174, 0.92);
}

.blog-listing-meta {
  margin: 0.35rem 0 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.42rem;
  color: #6e6254;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.blog-listing-meta time,
.blog-listing-read-time {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 246, 221, 0.78);
  border: 1px solid rgba(210, 164, 32, 0.18);
}

.blog-listing-meta-sep {
  color: rgba(110, 98, 84, 0.7);
  font-weight: 500;
}

.blog-listing-cta {
  margin: auto 0 0;
  padding-top: 0.55rem;
}

.blog-detail-meta {
  margin: 0.15rem 0 0.62rem;
}

.blog-detail-categories {
  margin-top: 0;
}

@media (max-width: 900px) {
  .blog-article-body {
    font-size: 1rem;
  }

  .blog-article-body > * + * {
    margin-top: 0.9rem;
  }

  .blog-article-body h2 {
    margin-top: 1.7rem;
  }

  .blog-article-body h3 {
    margin-top: 1.35rem;
  }

  .blog-listing-excerpt {
    line-clamp: 5;
    -webkit-line-clamp: 5;
  }
}

.section-intro {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--text-soft-strong);
}

.section-cta {
  margin: 22px 0 0;
}

.service-card {
  --service-accent: rgba(210, 164, 32, 0.28);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 253, 246, 0.98), rgba(252, 247, 235, 0.96));
}

.service-managed {
  --service-accent: rgba(210, 164, 32, 0.32);
}

.service-cloud {
  --service-accent: rgba(188, 146, 32, 0.32);
}

.service-network {
  --service-accent: rgba(154, 126, 48, 0.3);
}

.service-software {
  --service-accent: rgba(166, 136, 56, 0.3);
}

.service-assessment {
  --service-accent: rgba(143, 113, 33, 0.3);
}

.service-card::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--service-accent), rgba(210, 164, 32, 0));
}

.service-banner {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0;
  background: #1b1a1a;
  position: relative;
}

.service-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  color: transparent;
}

.service-content {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(210, 164, 32, 0.15);
}

.service-card .tag {
  align-self: flex-start;
  margin-bottom: 1px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-title {
  display: block;
  font-size: clamp(1.4rem, 1.9vw, 1.88rem);
  font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
  line-height: 1.24;
}

.service-card .service-title {
  margin-bottom: 1px;
  max-width: 28ch;
}

.service-content p {
  margin: 4px 0;
  font-size: 1rem;
  line-height: 1.68;
}

.service-content p:first-of-type {
  margin-top: 0;
}

.service-content p:last-of-type {
  margin-bottom: 0;
}

.service-content p:first-of-type {
  color: #5f584f;
}

.service-icon-shell {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6FC6F2 0%, #3B6FD8 100%);
  box-shadow:
    0 14px 22px -12px rgba(59, 111, 216, 0.45),
    inset 0 2px 2px rgba(255, 255, 255, 0.8),
    inset 0 -5px 8px rgba(20, 50, 140, 0.3);
  overflow: hidden;
  flex: 0 0 auto;
  margin-top: 1px;
}

.service-icon-shell::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -6px;
  width: 42px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  filter: blur(6px);
  transform: rotate(-18deg);
}

.service-icon {
  width: 19px;
  height: 19px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.35));
}

h2.service-title .service-icon-shell {
  width: 40px;
  height: 40px;
}

h2.service-title .service-icon {
  width: 19px;
  height: 19px;
}

h3.service-title .service-icon-shell {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

h3.service-title .service-icon {
  width: 16px;
  height: 16px;
}

.service-iaas .service-icon-shell {
  background: linear-gradient(135deg, #4FD8B0 0%, #1B9C7A 100%);
  box-shadow: 0 14px 22px -12px rgba(27, 156, 122, 0.45), inset 0 2px 2px rgba(255, 255, 255, 0.8), inset 0 -5px 8px rgba(10, 90, 60, 0.28);
}

.service-paas .service-icon-shell {
  background: linear-gradient(135deg, #B98AF2 0%, #6B3FD1 100%);
  box-shadow: 0 14px 22px -12px rgba(107, 63, 209, 0.45), inset 0 2px 2px rgba(255, 255, 255, 0.8), inset 0 -5px 8px rgba(70, 20, 160, 0.28);
}

.service-saas .service-icon-shell {
  background: linear-gradient(135deg, #FFC65C 0%, #EF8A2B 100%);
  box-shadow: 0 14px 22px -12px rgba(239, 138, 43, 0.45), inset 0 2px 2px rgba(255, 255, 255, 0.8), inset 0 -5px 8px rgba(160, 70, 10, 0.28);
}

.service-network .service-icon-shell {
  background: linear-gradient(135deg, #5FD4E0 0%, #1F7FBF 100%);
  box-shadow: 0 14px 22px -12px rgba(31, 127, 191, 0.45), inset 0 2px 2px rgba(255, 255, 255, 0.8), inset 0 -5px 8px rgba(10, 70, 130, 0.28);
}

.service-software .service-icon-shell {
  background: linear-gradient(135deg, #F888B8 0%, #D43D82 100%);
  box-shadow: 0 14px 22px -12px rgba(212, 61, 130, 0.45), inset 0 2px 2px rgba(255, 255, 255, 0.8), inset 0 -5px 8px rgba(140, 20, 80, 0.28);
}

.service-assessment .service-icon-shell {
  background: linear-gradient(135deg, #5C6B8C 0%, #242E45 100%);
  box-shadow: 0 14px 22px -12px rgba(36, 46, 69, 0.5), inset 0 2px 2px rgba(255, 255, 255, 0.6), inset 0 -5px 8px rgba(10, 15, 40, 0.4);
}

/* Product logo card — logo-first layout */
.prod-logo-wrap {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 248, 232, 0.9), rgba(249, 240, 220, 0.8));
  border: 1px solid rgba(210, 164, 32, 0.14);
}

.prod-logo {
  height: 80px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}

/* SVG logo support */
svg.prod-logo {
  height: 80px;
  width: 80px;
  max-width: 220px;
}

.prod-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a6d30;
  margin: 0 0 10px;
}

.showcase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 253, 246, 0.98), rgba(252, 247, 235, 0.95));
  box-shadow: 0 18px 40px rgba(54, 43, 18, 0.1);
}

.showcase-card::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(210, 164, 32, 0.62), rgba(210, 164, 32, 0));
}

.showcase-card h3 {
  font-size: 1.28rem;
  line-height: 1.3;
  letter-spacing: -0.012em;
  margin-bottom: 8px;
}

.showcase-card p {
  margin: 0 0 10px;
  line-height: 1.68;
}

.showcase-card p:last-child {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 10px;
}

.showcase-card .tag {
  align-self: flex-start;
  margin-bottom: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card {
  border-color: rgba(210, 164, 32, 0.16);
}

.product-card .button.alt {
  background: rgba(255, 247, 230, 0.92);
}

.case-card,
.insight-card {
  padding-top: 22px;
}

.case-card {
  background: linear-gradient(180deg, rgba(255, 252, 244, 0.98), rgba(246, 239, 220, 0.92));
}

.insight-card {
  background: linear-gradient(180deg, rgba(255, 253, 246, 0.98), rgba(244, 238, 224, 0.9));
}

.home-products .grid,
.home-cases .grid,
.home-insights .grid {
  gap: 22px;
}

.portfolio-more {
  margin-top: 12px;
}

.portfolio-more summary {
  cursor: pointer;
  color: #8a6d30;
  font-weight: 600;
  margin-bottom: 12px;
}

.portfolio-more[open] summary {
  margin-bottom: 16px;
}

/* legacy inline SVG badge (kept for potential reuse) */
.prod-icon-shell {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow:
    0 8px 18px -8px rgba(36, 32, 24, 0.28),
    inset 0 0 0 1.5px rgba(36, 32, 24, 0.07);
  flex: 0 0 auto;
  margin-top: 2px;
}

.prod-icon {
  width: 22px;
  height: 22px;
}

@media (max-width: 1100px) and (min-width: 881px) {
  h2.service-title .service-icon-shell {
    width: 38px;
    height: 38px;
  }

  h2.service-title .service-icon {
    width: 18px;
    height: 18px;
  }

  h3.service-title .service-icon-shell {
    width: 33px;
    height: 33px;
  }

  h3.service-title .service-icon {
    width: 15px;
    height: 15px;
  }
}

.tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #6d4d07;
  background: #fff1c6;
  border: 1px solid #e9cb75;
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 10px;
}

.list {
  margin: 0;
  padding-left: 20px;
}

.list li {
  margin-bottom: 7px;
}

.cta {
  background: linear-gradient(160deg, #4d4747, #2f2b2b);
  color: #fff3c8;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 22px 44px rgba(39, 35, 33, 0.18);
}

.cta p {
  color: #f2e9c8;
}

.page-title {
  padding: 46px 0 18px;
}

.page-title.product-page h1 {
  font-size: clamp(1.55rem, 3.2vw, 2.55rem);
}

.page-title.product-page p {
  max-width: 820px;
}

.product-hero-mark {
  width: min(300px, 78vw);
  margin: 0 0 16px;
}

.product-hero-mark img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 20px rgba(109, 86, 17, 0.14));
}

.page-title p {
  color: var(--muted);
  max-width: 760px;
}

.content-type-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px;
  border: 1px solid transparent;
}

.content-type-badge.is-insight {
  color: #65470a;
  background: rgba(255, 235, 176, 0.82);
  border-color: rgba(210, 164, 32, 0.35);
}

.content-type-badge.is-case {
  color: #3d4d20;
  background: rgba(212, 236, 176, 0.72);
  border-color: rgba(112, 148, 68, 0.34);
}

.content-type-badge.is-blog {
  color: #3e2f5c;
  background: rgba(219, 205, 243, 0.72);
  border-color: rgba(112, 84, 164, 0.34);
}

.page-title.service-page h1 {
  font-size: clamp(1.7rem, 2.3vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: min(100%, 980px);
}

.page-title.service-page p {
  max-width: 900px;
  line-height: 1.75;
}

.page-title.service-page {
  padding: 54px 0 24px;
}

.page-title.service-page .container {
  display: grid;
  gap: 12px;
  grid-template-areas:
    "crumb"
    "title"
    "summary"
    "hero";
}

.page-title.service-page .container > p:first-child {
  grid-area: crumb;
}

.page-title.service-page .container > h1 {
  grid-area: title;
}

.page-title.service-page .container > p:last-of-type {
  grid-area: summary;
}

.page-title.service-page .container > .service-hero-mark {
  grid-area: hero;
}

.service-hero-mark {
  width: 40px;
  margin: 0;
}

.service-hero-mark.is-banner {
  width: 100%;
  margin-top: 6px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 217, 92, 0.18), transparent 26%),
    linear-gradient(145deg, rgba(255, 252, 246, 0.98), rgba(246, 237, 219, 0.94));
  box-shadow: 0 20px 44px rgba(54, 43, 18, 0.14);
}

.service-hero-mark.is-banner .service-banner {
  aspect-ratio: 16 / 8.4;
  background: transparent;
  width: 100%;
}

.service-hero-mark.is-banner .service-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-title.service-page + .section {
  padding-top: 20px;
}

.page-title.service-page + .section .grid.cols-2 {
  gap: 22px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.page-title.service-page + .section .card {
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-title.service-page + .section .card h2 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: clamp(1.28rem, 2vw, 1.58rem);
}

.page-title.service-page + .section .card h3 {
  margin-top: 1rem;
  margin-bottom: 0.45rem;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.page-title.service-page + .section .card p {
  margin: 0.65rem 0;
}

.page-title.service-page + .section .card .list {
  margin: 0.4rem 0 0;
  padding-left: 1.15rem;
}

.page-title.service-page + .section .card .list li + li {
  margin-top: 0.42rem;
}

.page-title.service-page + .section .card p:last-of-type {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.page-title.service-page + .section .card p:last-of-type .button {
  margin-left: 0;
}

.service-hero-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.service-hero-mark .service-icon-shell {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.service-hero-mark .service-icon {
  width: 19px;
  height: 19px;
}

.service-cloud .service-icon-shell {
  background: linear-gradient(135deg, #6FC6F2 0%, #3B6FD8 100%);
  box-shadow:
    0 14px 22px -12px rgba(59, 111, 216, 0.45),
    inset 0 2px 2px rgba(255, 255, 255, 0.8),
    inset 0 -5px 8px rgba(20, 50, 140, 0.3);
}

.service-managed .service-icon-shell {
  background: linear-gradient(135deg, #5FD4E0 0%, #1F7FBF 100%);
  box-shadow:
    0 14px 22px -12px rgba(31, 127, 191, 0.45),
    inset 0 2px 2px rgba(255, 255, 255, 0.8),
    inset 0 -5px 8px rgba(17, 73, 118, 0.3);
}

.text-justify-desktop {
  text-align: left;
}

.home-quick-contact {
  padding-top: 0;
}

.home-quick-contact-card {
  background: linear-gradient(140deg, rgba(255, 252, 246, 0.98), rgba(247, 239, 226, 0.9));
  border: 1px solid #dcc9a3;
  border-left: 5px solid #d7b45d;
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
}

.home-quick-contact-card h2 {
  margin: 0 0 8px;
}

.home-quick-contact-card p {
  margin: 0;
  color: var(--text-soft-strong);
}

.home-quick-contact-meta {
  margin: 12px 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  color: var(--text-soft-strong);
  font-size: 0.92rem;
}

  flex: 1 1 180px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 245, 214, 0.92);
  border: 1px solid rgba(210, 164, 32, 0.22);
}

.home-quick-contact-meta a {
  color: var(--primary-2);
}

.site-footer {
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding: 28px 0 36px;
  color: var(--muted);
  font-size: var(--footer-font-size);
  line-height: var(--footer-line-height);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--footer-link-color);
}

.site-footer a:hover {
  color: var(--primary-2);
}

.footer-contact {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.77rem;
  color: rgba(109, 100, 89, 0.75);
  line-height: 1.6;
}

.footer-contact a {
  color: rgba(109, 100, 89, 0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(109, 100, 89, 0.5);
}

.footer-contact a:hover {
  color: var(--primary-2);
  border-bottom-color: var(--primary-2);
}

.contact-box {
  background: rgba(255, 252, 246, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.contact-divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 22px 0 18px;
}

.consultation-form {
  display: grid;
  gap: 10px;
}

.consultation-form label {
  font-weight: 600;
  color: var(--ink);
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d6c8a7;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}

.consultation-form textarea {
  resize: vertical;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  outline: 2px solid rgba(210, 164, 32, 0.28);
  border-color: #c99c1f;
}

.consultation-form button {
  margin-top: 6px;
  width: fit-content;
}

.form-status {
  display: none;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
}

.form-status.success {
  display: block;
  border: 1px solid #97c9a6;
  background: #ecfaf0;
  color: #1d6136;
}

.form-status.error {
  display: block;
  border: 1px solid #efb0ab;
  background: #fff2f1;
  color: #8a2f2a;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

@media (max-width: 880px) {
  .grid.cols-2,
  .grid.cols-3 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 74px 0 42px;
  }

  .hero-box {
    padding: 24px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-actions {
    margin: 20px 0 16px;
  }

  .hero-meta,
  .hero-proof {
    gap: 8px;
  }

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

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 210px;
  }

  .brand-copy {
    display: flex;
  }

  .brand-copy strong {
    font-size: 0.82rem;
  }

  .menu-toggle {
    display: inline-flex;
    background: linear-gradient(140deg, #3f3a3a, #262323);
    color: #fff;
    border: 1px solid rgba(255, 217, 92, 0.24);
  }

  .main-nav {
    position: absolute;
    left: 4%;
    right: 4%;
    top: 74px;
    background: linear-gradient(140deg, #3f3a3a, #262323);
    border: 1px solid rgba(255, 217, 92, 0.16);
    border-radius: 12px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
  }

  .main-nav a {
    color: #fff;
    padding: 8px 12px;
    font-size: var(--header-nav-font-size);
    line-height: var(--header-nav-line-height);
  }

  .main-nav a:not(.button)::after {
    background: linear-gradient(90deg, var(--primary), transparent);
  }

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

  .page-title.service-page {
    padding: 40px 0 18px;
  }

  .page-title.service-page .container {
    gap: 10px;
  }

  .service-hero-mark.is-banner {
    width: 100%;
    margin-top: 2px;
    border-radius: 20px;
  }

  .page-title.service-page + .section {
    padding-top: 12px;
  }

  .page-title.service-page + .section .grid.cols-2 {
    gap: 14px;
  }

  .page-title.service-page + .section .card {
    padding: 18px;
  }

  .page-title.service-page + .section .card p:last-of-type {
    margin-top: 1rem;
  }

  .page-title.service-page + .section .card p:last-of-type {
    flex-direction: column;
  }

  .page-title.service-page + .section .card p:last-of-type .button {
    width: 100%;
    flex: 1 1 auto;
  }

  .section {
    padding: 40px 0;
  }

  .section-intro {
    margin-bottom: 18px;
  }

  .showcase-card,
  .service-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .showcase-card {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .showcase-card h3 {
    font-size: 1.18rem;
  }

  .prod-logo-wrap {
    min-height: 82px;
  }

  .cta {
    padding: 28px 22px;
  }

  .home-quick-contact-card {
    padding: 18px;
  }

  .home-quick-contact-meta {
    gap: 8px;
    font-size: 0.9rem;
  }

  h2.service-title .service-icon-shell {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  h2.service-title .service-icon {
    width: 17px;
    height: 17px;
  }

  h3.service-title .service-icon-shell {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  h3.service-title .service-icon {
    width: 15px;
    height: 15px;
  }
}

@media (min-width: 881px) {
  .text-justify-desktop {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
  }
}
