﻿* {
  box-sizing: border-box;
}

:root {
  --ink: #071344;
  --text: #39415f;
  --muted: #6f7690;
  --line: #dde5f6;
  --panel: #ffffff;
  --soft: #f6f9ff;
  --blue: #1558ff;
  --blue-2: #357cff;
  --violet: #7a4cff;
  --teal: #10c6bd;
  --coral: #ff5f63;
  --amber: #ffb13b;
  --shadow: 0 22px 60px rgba(18, 42, 105, 0.12);
  --shadow-soft: 0 14px 34px rgba(20, 42, 100, 0.08);
  --radius: 8px;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 4%, rgba(21, 88, 255, 0.08), transparent 26rem),
    radial-gradient(circle at 86% 12%, rgba(16, 198, 189, 0.08), transparent 24rem),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 32%, #f8fbff 100%);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  width: calc(100% - 44px);
  max-width: var(--max);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 30;
  padding: 0;
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin: 18px auto 0;
  padding: 0 20px 0 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(204, 216, 242, 0.78);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 174px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.site-nav a {
  position: relative;
  padding: 25px 14px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--violet));
  opacity: 0;
  transform: scaleX(0.4);
  transition: 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, var(--violet) 100%);
  box-shadow: 0 16px 30px rgba(21, 88, 255, 0.24);
}

.btn-secondary {
  color: var(--blue);
  background: #fff;
  border-color: rgba(21, 88, 255, 0.32);
}

.btn-light {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.btn-full {
  width: 100%;
}

.icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.4;
}

.hero,
.page-hero {
  padding: 74px 0 32px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: flex;
  align-items: center;
  margin-top: -92px;
  padding: 190px 0 64px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(7, 19, 68, 0.88), rgba(21, 88, 255, 0.68), rgba(16, 198, 189, 0.32)),
    url("../images/photo-1519389950473-47ba0277781c-w2200-q82.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.14), transparent 26rem),
    linear-gradient(180deg, rgba(7, 19, 68, 0.16), rgba(7, 19, 68, 0.52));
  pointer-events: none;
}

.hero .site-shell {
  position: relative;
  z-index: 1;
}

.hero .hero-grid {
  display: block;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hero .hero-visual {
  display: none;
}

.hero .eyebrow {
  color: #dfe8ff;
  justify-content: center;
}

.hero .eyebrow::before {
  background: linear-gradient(90deg, #ffffff, var(--teal));
}

.hero h1 {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  color: #fff;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.hero .lead {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.88);
}

.hero .hero-actions,
.hero .hero-badges,
.hero .trust-row {
  justify-content: center;
}

.hero .btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
}

.hero .hero-badges span {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.hero .hero-badges .icon {
  color: #fff;
}

.hero .trust-row {
  color: rgba(255, 255, 255, 0.82);
}

.hero .avatar-stack span {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.hero .stats-panel {
  margin-top: 64px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 1fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  line-height: 1.08;
}

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(2.85rem, 7vw, 5rem);
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(2.35rem, 5.2vw, 4.15rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.28rem;
}

.lead {
  max-width: 640px;
  margin-bottom: 28px;
  color: #48516f;
  font-size: 1.08rem;
}

.gradient-text {
  background: linear-gradient(120deg, var(--blue) 8%, var(--violet) 52%, var(--teal) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-weight: 700;
}

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

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(21, 88, 255, 0.16);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 22px rgba(20, 42, 100, 0.06);
  font-size: 0.88rem;
  font-weight: 850;
}

.hero-badges .icon {
  width: 17px;
  height: 17px;
  color: var(--blue);
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-right: -9px;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.visual-card {
  position: relative;
  overflow: hidden;
  height: 430px;
  margin-left: auto;
  border: 1px solid rgba(205, 216, 243, 0.78);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.8), transparent 36%, rgba(21, 88, 255, 0.16));
}

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

.metric-panel,
.floating-chip,
.floating-chip-secondary,
.ai-badge,
.mini-chart {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(205, 216, 243, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.metric-panel {
  left: 22px;
  bottom: 36px;
  width: min(86%, 430px);
  padding: 20px;
}

.metric-panel h3 {
  margin-bottom: 16px;
}

.metric-lines {
  display: grid;
  gap: 10px;
}

.metric-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: #eaf0ff;
}

.metric-lines span:nth-child(1) {
  width: 82%;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.metric-lines span:nth-child(2) {
  width: 64%;
}

.metric-lines span:nth-child(3) {
  width: 72%;
}

.floating-chip {
  top: 28px;
  left: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: var(--ink);
  font-weight: 900;
}

.floating-chip-secondary {
  right: -6px;
  top: 120px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: var(--ink);
  font-weight: 900;
}

.chip-icon,
.service-icon,
.value-icon,
.process-number,
.contact-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.chip-icon.teal,
.service-icon.teal,
.value-icon.teal,
.contact-icon.teal {
  background: linear-gradient(135deg, var(--teal), #36d5c4);
}

.chip-icon.coral,
.service-icon.coral,
.value-icon.coral,
.contact-icon.coral {
  background: linear-gradient(135deg, var(--coral), #ff8373);
}

.chip-icon.amber,
.service-icon.amber,
.value-icon.amber,
.contact-icon.amber {
  background: linear-gradient(135deg, var(--amber), #ff7e57);
}

.ai-badge {
  right: 78px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 950;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.mini-chart {
  right: 18px;
  bottom: 20px;
  width: 165px;
  padding: 16px;
}

.mini-chart strong {
  display: block;
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1;
}

.mini-chart small {
  color: var(--muted);
  font-weight: 800;
}

.bars {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 58px;
  margin-top: 12px;
}

.bars span {
  flex: 1;
  min-width: 10px;
  border-radius: 999px 999px 2px 2px;
  background: linear-gradient(180deg, var(--teal), var(--blue));
}

.bars span:nth-child(1) {
  height: 32%;
}

.bars span:nth-child(2) {
  height: 54%;
}

.bars span:nth-child(3) {
  height: 78%;
}

.bars span:nth-child(4) {
  height: 48%;
}

.bars span:nth-child(5) {
  height: 88%;
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 44px 0 26px;
  padding: 24px 18px;
  border: 1px solid rgba(206, 216, 242, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 8px 26px;
  border-right: 1px solid var(--line);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.stat-item:nth-child(2) .stat-icon {
  background: linear-gradient(135deg, var(--teal), #26d0c6);
}

.stat-item:nth-child(3) .stat-icon {
  background: linear-gradient(135deg, var(--violet), #895aff);
}

.stat-item:nth-child(4) .stat-icon {
  background: linear-gradient(135deg, var(--coral), #ff8b73);
}

.stat-value {
  display: block;
  color: var(--ink);
  font-size: 1.75rem;
  font-weight: 950;
  line-height: 1.1;
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.25;
}

.section {
  padding: 54px 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(246, 249, 255, 0), rgba(239, 246, 255, 0.72));
}

.section-head {
  max-width: 690px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.section-head p {
  color: var(--muted);
  font-weight: 600;
}

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

.service-card,
.post-card,
.value-card,
.contact-card,
.feature-card,
.quote-card,
.testimonial-card,
.showcase-card {
  border: 1px solid rgba(205, 216, 243, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.service-card,
.post-card,
.value-card,
.contact-card,
.feature-card,
.industry-card,
.capability-card,
.process-card,
.quote-card,
.testimonial-card,
.showcase-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.post-card:hover,
.value-card:hover,
.contact-card:hover,
.feature-card:hover,
.industry-card:hover,
.capability-card:hover,
.process-card:hover,
.quote-card:hover,
.testimonial-card:hover,
.showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(21, 88, 255, 0.28);
  box-shadow: 0 26px 58px rgba(18, 42, 105, 0.14);
}

.service-card {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.outcome-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(21, 88, 255, 0.16);
  border-radius: 999px;
  color: var(--blue);
  background: #f7faff;
  font-size: 0.75rem;
  font-weight: 900;
}

.service-card h3 {
  margin: 20px 0 10px;
}

.service-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 600;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
}

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

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

.industry-card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(205, 216, 243, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.industry-card h3 {
  margin: 18px 0 8px;
}

.industry-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

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

.capability-card {
  position: relative;
  overflow: hidden;
  min-height: 218px;
  padding: 30px;
  border: 1px solid rgba(205, 216, 243, 0.82);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.86)),
    #fff;
  box-shadow: var(--shadow-soft);
}

.capability-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(21, 88, 255, 0.14), rgba(16, 198, 189, 0.12));
}

.capability-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  font-size: 0.92rem;
  font-weight: 950;
}

.capability-card h3 {
  margin-bottom: 10px;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.showcase-section {
  overflow: hidden;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 18px;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  isolation: isolate;
  color: #fff;
  background: var(--ink);
}

.showcase-card.large {
  grid-row: span 2;
  min-height: 578px;
}

.showcase-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 19, 68, 0.04), rgba(7, 19, 68, 0.84)),
    linear-gradient(120deg, rgba(21, 88, 255, 0.42), transparent 58%);
}

.showcase-card:hover img {
  transform: scale(1.055);
}

.showcase-content {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  max-width: 560px;
}

.showcase-content span,
.post-category-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.showcase-content span {
  margin-bottom: 12px;
  color: #eaf1ff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.showcase-content h3 {
  max-width: 520px;
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

.showcase-content p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
}

.tech-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 34px;
  align-items: center;
  padding: 36px;
  border: 1px solid rgba(205, 216, 243, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.tech-panel h2 {
  margin-bottom: 12px;
}

.tech-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 600;
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tech-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(21, 88, 255, 0.16);
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(180deg, #fff, #f7faff);
  box-shadow: 0 10px 22px rgba(20, 42, 100, 0.06);
  font-weight: 850;
}

.feature-card {
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.feature-card .feature-body {
  padding: 26px;
}

.feature-card p {
  color: var(--muted);
  font-weight: 600;
}

.why-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(205, 216, 243, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 22px;
  border-right: 1px solid var(--line);
}

.why-item:last-child {
  border-right: 0;
}

.why-item h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.why-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
}

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

.process-card {
  position: relative;
  min-height: 142px;
  padding: 24px 24px 22px 84px;
  border: 1px solid rgba(205, 216, 243, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.process-number {
  position: absolute;
  left: 22px;
  top: 24px;
  width: 42px;
  height: 42px;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 950;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.process-card:nth-child(3) .process-number {
  background: linear-gradient(135deg, var(--teal), #35d2c3);
}

.process-card:nth-child(4) .process-number {
  background: linear-gradient(135deg, var(--coral), #ff8a76);
}

.process-card h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: 48px;
}

.image-frame {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(205, 216, 243, 0.82);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21, 88, 255, 0.08), transparent 42%, rgba(16, 198, 189, 0.12));
}

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

.value-card {
  padding: 26px;
}

.value-card h3 {
  margin: 18px 0 8px;
}

.value-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 600;
}

.expertise-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 30px;
  border: 1px solid rgba(205, 216, 243, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.expertise-item {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px 14px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.expertise-item:last-child {
  border-right: 0;
}

.expertise-item h3 {
  margin: 0;
  font-size: 0.98rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  margin: 28px 0 0;
  padding: 32px 42px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(120deg, var(--blue) 0%, var(--violet) 49%, var(--coral) 100%);
  box-shadow: 0 26px 60px rgba(36, 74, 180, 0.22);
}

.cta-band h2 {
  margin-bottom: 6px;
  color: #fff;
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 650;
}

.cta-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  color: var(--blue);
  background: #fff;
}

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

.post-card {
  position: relative;
  overflow: hidden;
}

.post-card img {
  width: 100%;
  height: 208px;
  object-fit: cover;
  transition: transform 520ms ease;
}

.post-card:hover img {
  transform: scale(1.045);
}

.post-category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  color: #fff;
  background: linear-gradient(135deg, rgba(21, 88, 255, 0.94), rgba(122, 76, 255, 0.94));
  box-shadow: 0 12px 24px rgba(7, 19, 68, 0.18);
}

.post-body {
  padding: 24px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.post-body h3 {
  margin-bottom: 10px;
}

.post-body p {
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 600;
}

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

.testimonial-card {
  position: relative;
  overflow: hidden;
  min-height: 292px;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(21, 88, 255, 0.12), rgba(16, 198, 189, 0.1));
}

.testimonial-card.featured {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(21, 88, 255, 0.94), rgba(122, 76, 255, 0.95)),
    #1558ff;
}

.testimonial-card.featured h3,
.testimonial-card.featured p,
.testimonial-card.featured strong {
  color: #fff;
}

.testimonial-card.featured span {
  color: rgba(255, 255, 255, 0.76);
}

.rating {
  display: flex;
  gap: 5px;
  margin-bottom: 22px;
  color: var(--amber);
}

.rating .icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke-width: 2;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
  color: var(--text);
  font-size: 1.03rem;
  font-weight: 700;
}

.testimonial-author {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

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

.testimonial-author strong {
  color: var(--ink);
  font-weight: 900;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
}

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

.reveal-on-scroll.is-visible:hover {
  transform: translateY(-6px);
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 32px;
}

.category-pill {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(21, 88, 255, 0.2);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-weight: 850;
}

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

.contact-trust-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.contact-trust-strip .why-item {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-trust-strip .why-item:nth-child(2n) {
  border-right: 0;
}

.contact-trust-strip .why-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.contact-trust-strip .why-item h3 {
  overflow-wrap: anywhere;
}

.contact-form {
  padding: 30px;
  border: 1px solid rgba(205, 216, 243, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-hidden {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.form-field label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #d9e2f2;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input {
  height: 54px;
  padding: 0 16px;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
  padding: 14px 16px;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(21, 88, 255, 0.58);
  box-shadow: 0 0 0 4px rgba(21, 88, 255, 0.1);
}

.form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.form-alert {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 95, 99, 0.28);
  border-radius: 8px;
  color: #9f2528;
  background: rgba(255, 95, 99, 0.08);
  font-weight: 750;
}

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

.contact-card {
  padding: 24px;
}

.contact-card h3 {
  margin: 18px 0 8px;
  font-size: 1.08rem;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.map-panel {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  margin-top: 18px;
  border: 1px solid rgba(205, 216, 243, 0.82);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(21, 88, 255, 0.08) 49%, transparent 50%),
    linear-gradient(0deg, transparent 48%, rgba(16, 198, 189, 0.08) 49%, transparent 50%),
    #f4f8ff;
  background-size: 92px 92px;
  box-shadow: var(--shadow-soft);
}

.map-card {
  position: absolute;
  left: 34px;
  top: 34px;
  width: min(330px, calc(100% - 68px));
  padding: 22px;
  border: 1px solid rgba(205, 216, 243, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.map-pin {
  position: absolute;
  right: 18%;
  bottom: 32%;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50% 50% 50% 0;
  color: #fff;
  background: var(--coral);
  transform: rotate(-45deg);
  box-shadow: 0 12px 24px rgba(255, 95, 99, 0.28);
}

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

.newsletter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  align-items: center;
  gap: 28px;
  padding: 34px;
  border: 1px solid rgba(205, 216, 243, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  height: 52px;
  border: 1px solid #d9e2f2;
  border-radius: 8px;
  padding: 0 16px;
  outline: none;
}

.site-footer {
  position: relative;
  margin-top: 34px;
  padding: 62px 0 30px;
  background:
    radial-gradient(circle at 12% 8%, rgba(21, 88, 255, 0.06), transparent 24rem),
    radial-gradient(circle at 86% 16%, rgba(16, 198, 189, 0.06), transparent 22rem),
    linear-gradient(180deg, #f3f7ff 0%, #f8fbff 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(4, 1fr);
  gap: 34px;
}

.footer-brand img {
  width: 168px;
  margin-bottom: 14px;
}

.footer-brand p,
.footer-col p {
  color: var(--muted);
  font-weight: 600;
}

.footer-col h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-col a {
  color: var(--muted);
  font-weight: 700;
}

.footer-links a:hover,
.footer-col a:hover {
  color: var(--blue);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

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

.footer-form input {
  width: 100%;
  height: 42px;
  border: 1px solid #d9e2f2;
  border-radius: 8px;
  padding: 0 12px;
  outline: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.footer-bottom-links {
  display: flex;
  gap: 22px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-detail {
  overflow: hidden;
  border: 1px solid rgba(205, 216, 243, 0.82);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.service-detail img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.service-detail-body {
  padding: 28px;
}

.service-detail-body ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail-body li {
  display: flex;
  gap: 9px;
  color: var(--muted);
  font-weight: 700;
}

.service-detail-body li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin-top: 0.65em;
  border-radius: 50%;
  background: var(--teal);
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
}

.quote-card {
  padding: 34px;
}

.quote-card blockquote {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 850;
  line-height: 1.25;
}

.quote-card cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.page-hero-media {
  overflow: hidden;
  height: 420px;
  border: 1px solid rgba(205, 216, 243, 0.82);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-single-hero {
  padding: 74px 0 34px;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--blue);
  font-weight: 850;
}

.article-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(205, 216, 243, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.article-hero-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
}

.article-hero-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 600;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.author-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  font-weight: 950;
}

.article-author strong,
.article-author small {
  display: block;
}

.article-author strong {
  color: var(--ink);
}

.article-author small {
  color: var(--muted);
  font-weight: 700;
}

.article-hero-image {
  overflow: hidden;
  height: 420px;
  border-radius: 8px;
}

.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.article-content {
  padding: 34px;
  border: 1px solid rgba(205, 216, 243, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.article-content .article-lead {
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 750;
  line-height: 1.6;
}

.article-content h2 {
  margin: 34px 0 14px;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.article-content p,
.article-content li {
  color: var(--text);
  font-size: 1.02rem;
}

.article-content ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.article-callout {
  display: flex;
  gap: 14px;
  margin: 28px 0;
  padding: 22px;
  border: 1px solid rgba(21, 88, 255, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: linear-gradient(135deg, rgba(21, 88, 255, 0.08), rgba(16, 198, 189, 0.08));
}

.article-callout .icon {
  flex: 0 0 24px;
  color: var(--blue);
}

.article-callout p {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

.article-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 30px 0;
}

.article-steps div {
  padding: 22px;
  border: 1px solid rgba(205, 216, 243, 0.82);
  border-radius: 8px;
  background: #fff;
}

.article-steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  font-weight: 950;
}

.article-steps h3 {
  margin-bottom: 6px;
}

.article-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.article-sidebar {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 16px;
}

.sidebar-card {
  padding: 24px;
  border: 1px solid rgba(205, 216, 243, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.sidebar-card h3 {
  margin-bottom: 10px;
}

.sidebar-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 600;
}

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sidebar-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--blue);
  background: #f1f6ff;
  font-size: 0.85rem;
  font-weight: 850;
}

.sidebar-cta {
  background: linear-gradient(135deg, #fff, #f2f7ff);
}

.legal-hero {
  padding-bottom: 18px;
}

.legal-hero .site-shell {
  max-width: 880px;
}

.legal-content {
  max-width: 880px;
  margin: 0 auto;
  padding: 36px;
  border: 1px solid rgba(205, 216, 243, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.legal-content h2 {
  margin: 30px 0 10px;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--text);
  font-weight: 600;
}

.legal-content a {
  color: var(--blue);
  font-weight: 850;
}

@media (max-width: 1080px) {
  .site-shell {
    width: calc(100% - 32px);
    max-width: var(--max);
  }

  .nav-wrap {
    gap: 12px;
    padding-left: 16px;
  }

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

  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .contact-layout,
  .article-hero-card,
  .article-layout,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .hero-visual {
    min-height: 500px;
  }

  .stats-panel,
  .why-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item,
  .why-item {
    border-right: 0;
  }

  .stat-item:nth-child(odd),
  .why-item:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .stat-item:nth-child(-n + 2),
  .why-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .services-grid,
  .feature-grid,
  .industry-grid,
  .capability-grid,
  .post-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .showcase-card.large {
    grid-row: auto;
    min-height: 420px;
  }

  .process-grid,
  .expertise-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .expertise-item {
    border-bottom: 1px solid var(--line);
  }

  .expertise-item:nth-child(2n) {
    border-right: 0;
  }

  .cta-band,
  .tech-panel,
  .newsletter-panel {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

@media (max-width: 820px) {
  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    top: 10px;
  }

  .nav-wrap {
    min-height: 68px;
    margin-top: 10px;
  }

  .brand img {
    width: 150px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: grid;
    flex: 0 0 44px;
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--blue), var(--violet));
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .site-nav a::after {
    left: 14px;
    right: auto;
    width: 36px;
    bottom: 7px;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .hero,
  .page-hero {
    padding-top: 54px;
  }

  .hero {
    min-height: 720px;
    margin-top: -78px;
    padding: 150px 0 48px;
  }

  .hero .hero-grid {
    max-width: 100%;
  }

  .hero .site-shell {
    width: calc(100% - 24px);
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.8rem);
  }

  .lead {
    font-size: 1rem;
  }

  .hero-visual {
    min-height: 470px;
  }

  .visual-card {
    height: 392px;
  }

  .floating-chip-secondary {
    right: 8px;
  }

  .stats-panel,
  .services-grid,
  .feature-grid,
  .industry-grid,
  .capability-grid,
  .why-strip,
  .process-grid,
  .article-steps,
  .post-grid,
  .showcase-grid,
  .testimonial-grid,
  .value-grid,
  .contact-grid,
  .form-grid,
  .service-detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-trust-strip .why-item,
  .contact-trust-strip .why-item:nth-child(2n),
  .contact-trust-strip .why-item:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-trust-strip .why-item:last-child {
    border-bottom: 0;
  }

  .stat-item,
  .stat-item:nth-child(odd),
  .why-item,
  .why-item:nth-child(odd) {
    border-right: 0;
  }

  .stat-item,
  .why-item {
    border-bottom: 1px solid var(--line);
  }

  .stat-item:last-child,
  .why-item:last-child {
    border-bottom: 0;
  }

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

  .expertise-item,
  .expertise-item:nth-child(2n) {
    border-right: 0;
  }

  .cta-band {
    padding: 28px 24px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: calc(100vw - 22px);
    max-width: 368px;
    margin-right: 11px;
    margin-left: 11px;
  }

  .hero .site-shell {
    width: calc(100vw - 22px);
    max-width: 368px;
  }

  main,
  .section,
  .site-shell {
    min-width: 0;
    overflow-x: hidden;
  }

  .services-grid > *,
  .feature-grid > *,
  .industry-grid > *,
  .capability-grid > *,
  .showcase-grid > *,
  .post-grid > *,
  .testimonial-grid > * {
    min-width: 0;
  }

  .nav-wrap {
    position: relative;
    display: flex;
    padding: 0 10px 0 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 132px;
  }

  .nav-actions {
    justify-self: end;
  }

  .menu-toggle {
    display: grid !important;
    position: fixed;
    right: 18px;
    top: 22px;
    transform: none;
    z-index: 6;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(2rem, 8vw, 2.35rem);
    line-height: 1.12;
    max-width: min(100%, 318px);
  }

  h2,
  .section-head p,
  .service-card p,
  .industry-card p,
  .capability-card p,
  .post-body p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .section-head {
    max-width: 320px;
  }

  .hero h1 {
    max-width: 280px;
    font-size: clamp(1.75rem, 7.4vw, 2.05rem);
    overflow-wrap: anywhere;
  }

  .hero h1 .gradient-text {
    display: inline-block;
    max-width: 100%;
  }

  .hero .lead,
  .hero .trust-row {
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
  }

  .hero .hero-actions,
  .hero .hero-badges {
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-badges span {
    min-width: 0;
    max-width: 100%;
    justify-content: center;
    padding: 0 8px;
    font-size: 0.78rem;
    white-space: normal;
    text-align: center;
  }

  .btn {
    width: 100%;
  }

  .trust-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero .trust-row {
    align-items: center;
    text-align: center;
  }

  .hero-visual {
    min-height: 430px;
  }

  .visual-card {
    height: 340px;
  }

  .floating-chip,
  .floating-chip-secondary,
  .ai-badge,
  .mini-chart {
    display: none;
  }

  .metric-panel {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
  }

  .stat-item,
  .why-item {
    padding: 14px 4px;
  }

  .service-card,
  .industry-card,
  .capability-card,
  .article-content,
  .article-hero-card,
  .value-card,
  .contact-card,
  .contact-form,
  .post-body,
  .service-detail-body,
  .quote-card {
    padding: 22px;
  }

  .outcome-tag {
    position: static;
    align-self: flex-start;
    margin-bottom: 16px;
  }

  .service-card h3 {
    margin-top: 16px;
  }

  .blog-single-hero {
    padding-top: 54px;
  }

  .article-hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .article-hero-copy p,
  .article-content .article-lead {
    font-size: 1rem;
  }

  .article-hero-image,
  .article-hero-image img {
    height: 320px;
  }

  .image-frame,
  .image-frame img,
  .page-hero-media {
    min-height: 300px;
    height: 300px;
  }

  .map-panel {
    min-height: 380px;
  }
}

