:root {
  --ink: #101828;
  --muted: #667085;
  --line: #dce8f6;
  --paper: #ffffff;
  --wash: #eef6ff;
  --blue: #1769ff;
  --blue-2: #4b8dff;
  --navy: #07162f;
  --cyan: #7ad7ff;
  --shadow: 0 28px 80px rgba(24, 73, 134, 0.16);
  --soft-shadow: 0 18px 50px rgba(22, 62, 110, 0.11);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(23, 105, 255, 0.18), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(122, 215, 255, 0.24), transparent 26%),
    linear-gradient(180deg, #eaf4ff 0%, #f7fbff 46%, #eef6ff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

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

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

.page-shell {
  width: min(100% - 32px, 1420px);
  margin: 24px auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  box-shadow: 0 40px 110px rgba(29, 79, 140, 0.18);
  backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
}

.brand-logo {
  display: inline-grid;
  place-items: center;
  width: 78px;
  height: 34px;
  color: #fff;
  background: linear-gradient(135deg, #1769ff, #07162f);
  border-radius: 11px;
  box-shadow: 0 12px 28px rgba(23, 105, 255, 0.26);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #1f2a44;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--blue);
}

.nav-cta {
  padding: 12px 18px;
  color: #fff !important;
  background: #070b14;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(7, 11, 20, 0.22);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.section {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding: 86px 0;
  scroll-margin-top: 96px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.7fr);
  gap: 42px;
  align-items: center;
  min-height: min(76vh, 680px);
  padding-top: 36px;
  padding-bottom: 48px;
}

.hero::before {
  position: absolute;
  inset: 12px -54px 28px -54px;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 80% 10%, rgba(23, 105, 255, 0.34), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(229, 242, 255, 0.82));
  border-radius: 36px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  color: #174dba;
  background: rgba(23, 105, 255, 0.08);
  border: 1px solid rgba(23, 105, 255, 0.13);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 640px;
  margin-bottom: 18px;
  color: #050914;
  font-size: clamp(3.2rem, 5.5vw, 5.45rem);
  line-height: 0.94;
  letter-spacing: -0.015em;
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 24px;
  color: #405168;
  font-size: 1.16rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border-radius: 13px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button.primary {
  color: #fff;
  background: #070b14;
  box-shadow: 0 18px 36px rgba(7, 11, 20, 0.22);
}

.button.secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 600px;
  margin-top: 20px;
}

.hero-proof span {
  padding: 8px 12px;
  color: #1e3c66;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(210, 226, 247, 0.9);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 750;
}

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

.glass-card,
.floating-card {
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.main-card {
  position: relative;
  min-height: 420px;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(23, 105, 255, 0.96), rgba(6, 20, 54, 0.95)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.32), transparent 34%);
  overflow: hidden;
}

.main-card::after {
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 290px;
  height: 220px;
  content: "";
  background: radial-gradient(circle, rgba(122, 215, 255, 0.45), transparent 64%);
}

.card-kicker {
  display: block;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-card strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 360px;
  font-size: clamp(1.85rem, 2.6vw, 2.75rem);
  line-height: 1.03;
}

.hero-capability-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.hero-capability-grid span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  font-size: 0.86rem;
  font-weight: 780;
}

.hero-capability-grid .line-icon {
  width: 22px;
  height: 22px;
  color: var(--cyan);
}

.supply-lines {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: grid;
  gap: 12px;
  width: 230px;
}

.supply-lines span {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 6px;
  width: 210px;
  padding: 18px;
  color: #fff;
  background: rgba(7, 13, 28, 0.84);
}

.floating-card .line-icon {
  width: 32px;
  height: 32px;
  color: var(--cyan);
}

.floating-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.card-a {
  top: 8px;
  left: 0;
}

.card-b {
  top: 80px;
  right: 0;
}

.card-c {
  bottom: 38px;
  left: 18px;
}

.card-d {
  right: 24px;
  bottom: 0;
}

.line-icon,
.category-icon,
.mini-icon {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.section-heading,
.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading p,
.split-heading > p {
  color: var(--muted);
}

.about {
  padding-top: 48px;
  padding-bottom: 56px;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(48px, 5vw, 64px);
  align-items: center;
  width: 100%;
  margin-bottom: 28px;
}

.about .section-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  min-width: 0;
  height: auto;
  padding: 0;
  margin-bottom: 0;
}

.about-copy .eyebrow {
  align-self: flex-end;
  margin-bottom: 18px;
}

.about h2,
.about-copy h2 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
}

.about-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
}

.about-copy > p:not(.eyebrow) + p {
  margin-top: 10px;
}

.about-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
  max-height: none;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f2fb, #f7fbff);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.about-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 22, 47, 0.04), rgba(7, 22, 47, 0.09)),
    linear-gradient(180deg, transparent 62%, rgba(7, 22, 47, 0.08));
  pointer-events: none;
}

.about-visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  gap: 20px;
}

.image-panel {
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--soft-shadow);
}

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

.insight-cards {
  display: grid;
  gap: 16px;
}

.insight-cards article,
.service-card,
.model-grid article,
.comparison article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(221, 234, 249, 0.95);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
}

.insight-cards span,
.model-grid span,
.comparison span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-cards p,
.service-card p,
.model-grid p,
.comparison li,
.contact p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.trust-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(221, 234, 249, 0.95);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
}

.trust-card .line-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  color: var(--blue);
}

.trust-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.2;
}

.trust-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.service-card {
  min-height: 220px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.model-grid article:hover,
.category-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 68px rgba(22, 62, 110, 0.16);
}

.service-card .line-icon {
  width: 42px;
  height: 42px;
  padding: 9px;
  margin-bottom: 32px;
  color: var(--blue);
  background: #eaf3ff;
  border-radius: 14px;
}

.text-link {
  justify-self: end;
  color: var(--blue);
  font-weight: 850;
}

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

.focused-grid {
  align-items: stretch;
}

.category-tile {
  position: relative;
  height: clamp(470px, 42vw, 540px);
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-tile.large {
  grid-row: auto;
  height: clamp(470px, 42vw, 540px);
}

.image-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-tile .smart-home-image {
  object-position: 58% 48%;
}

.image-tile .beauty-tech-image {
  object-position: 50% 48%;
}

.image-tile .lifestyle-electronics-image {
  object-position: 50% 50%;
}

.image-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 22, 47, 0.06), rgba(7, 22, 47, 0.72));
}

.image-tile div {
  position: absolute;
  top: 40%;
  right: 24px;
  bottom: 18px;
  left: 24px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.category-tile span {
  display: block;
  min-height: 1.35em;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-tile h3 {
  min-height: 3.34rem;
  margin-bottom: 18px;
  color: #fff;
  font-size: 1.46rem;
  line-height: 1.15;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.category-tile p {
  max-width: 95%;
  min-height: 3.5rem;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.91rem;
  line-height: 1.44;
}

.category-tile ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
  align-content: flex-start;
}

.category-tile li {
  padding: 5px 7px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1.2;
}

.visual-tile {
  display: grid;
  align-content: end;
  padding: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 0%, rgba(122, 215, 255, 0.45), transparent 36%),
    linear-gradient(145deg, #1769ff, #0b2452);
}

.visual-tile.blue {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.28), transparent 32%),
    linear-gradient(145deg, #4b8dff, #07162f);
}

.visual-tile.dark {
  background:
    radial-gradient(circle at 82% 12%, rgba(23, 105, 255, 0.45), transparent 34%),
    linear-gradient(145deg, #07162f, #020711);
}

.visual-tile .category-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 72px;
  color: #fff;
}

.channel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 26px;
  align-items: stretch;
}

.channel-copy {
  padding: 34px;
  color: #fff;
  background: #07162f;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.channel-copy h2,
.channel-copy p {
  color: #fff;
}

.channel-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

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

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

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

.comparison li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: currentColor;
  border-radius: 50%;
}

.comparison .active {
  color: #fff;
  background: linear-gradient(145deg, #1769ff, #07162f);
}

.comparison .active span,
.comparison .active li {
  color: rgba(255, 255, 255, 0.82);
}

.mockup-stage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.process-timeline article {
  position: relative;
  min-height: 210px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(221, 234, 249, 0.95);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
}

.process-timeline article::after {
  position: absolute;
  top: 44px;
  right: -12px;
  width: 12px;
  height: 1px;
  content: "";
  background: rgba(23, 105, 255, 0.28);
}

.process-timeline article:last-child::after {
  display: none;
}

.process-timeline span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  color: #fff;
  background: var(--blue);
  border-radius: 13px;
  font-weight: 850;
}

.process-timeline p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.phone-card {
  min-height: 470px;
  padding: 22px;
  background: #fff;
  border: 8px solid #07162f;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.phone-card:nth-child(2),
.phone-card:nth-child(4) {
  margin-top: 42px;
}

.phone-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  color: #fff;
  background: var(--blue);
  border-radius: 14px;
  font-weight: 850;
}

.phone-card p {
  color: var(--muted);
}

.mock-row,
.mock-chip {
  margin-top: 18px;
  border-radius: 14px;
}

.mock-row {
  height: 70px;
  background: linear-gradient(135deg, #e8f2ff, #f7fbff);
}

.mock-row.short {
  width: 70%;
  height: 48px;
}

.mock-row.blue {
  background: linear-gradient(135deg, #1769ff, #7ad7ff);
}

.mock-chip {
  width: fit-content;
  padding: 10px 13px;
  color: var(--blue);
  background: #e8f2ff;
  font-size: 0.82rem;
  font-weight: 850;
}

.mock-chip.dark {
  color: #fff;
  background: #07162f;
}

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

.model-grid article {
  display: grid;
  min-height: 270px;
}

.model-grid .featured {
  color: #fff;
  background: linear-gradient(145deg, #1769ff, #07162f);
}

.model-grid .featured span,
.model-grid .featured h3,
.model-grid .featured p,
.model-grid .featured a {
  color: #fff;
}

.model-grid a {
  align-self: end;
  margin-top: 28px;
  color: var(--blue);
  font-weight: 850;
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 42px;
  align-items: center;
  padding: 38px 38px 50px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 16%, rgba(122, 215, 255, 0.36), transparent 34%),
    linear-gradient(145deg, #07162f, #0b2d68);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-panel > :not(.contact-network) {
  position: relative;
  z-index: 1;
}

.contact-panel h2,
.contact-panel p {
  color: #fff;
}

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

.contact-copy {
  max-width: 700px;
}

.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.contact-tags span {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1;
}

.contact-details {
  display: grid;
  justify-self: end;
  width: 100%;
  max-width: 360px;
  gap: 13px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.105);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.14);
}

.contact-details h3 {
  margin: 0 0 2px;
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.2;
}

.contact-group {
  display: grid;
  gap: 0;
}

.contact-group div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-group div:first-child {
  padding-top: 0;
}

.contact-group div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.coverage-group {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-details span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: 0;
  padding: 12px 16px;
  color: #07162f;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  font-size: 0.92rem;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}

.coverage-group p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.42;
}

.contact-network {
  position: absolute;
  right: auto;
  bottom: 8px;
  left: 24px;
  z-index: 0;
  width: min(650px, calc(100% - 430px));
  min-width: 430px;
  height: 172px;
  color: #fff;
  opacity: 0.085;
  pointer-events: none;
}

.contact-network path,
.contact-network circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.1;
}

.contact-network circle {
  stroke-width: 1.25;
}

.standard-page {
  width: min(100% - 56px, var(--max));
  margin: 0 auto;
  padding: 34px 0 72px;
}

.standard-page .section {
  width: 100%;
  padding: 36px 0;
}

.page-hero-card,
.content-card,
.contact-form-card,
.faq-card,
.cta-band {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(221, 234, 249, 0.95);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.page-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.58fr);
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 4vw, 52px);
  background:
    radial-gradient(circle at 88% 16%, rgba(23, 105, 255, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(233, 244, 255, 0.84));
}

.page-hero-card p:last-child,
.content-card p:last-child,
.cta-band p:last-child {
  margin-bottom: 0;
}

.hero-stat-stack,
.focus-list,
.experience-list,
.business-area-list,
.faq-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-stat-stack li,
.focus-list li,
.experience-list li,
.business-area-list li,
.faq-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.hero-stat-stack li::before,
.focus-list li::before,
.experience-list li::before,
.business-area-list li::before,
.faq-list li::before {
  position: absolute;
  top: 0.52rem;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  border-radius: 50%;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 28px;
}

.content-card {
  padding: clamp(24px, 3vw, 34px);
}

.content-card h2,
.contact-form-card h2,
.faq-card h2,
.cta-band h2 {
  max-width: none;
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.03;
}

.content-card p,
.contact-form-card p,
.faq-card p,
.cta-band p {
  color: var(--muted);
}

.info-card-grid,
.faq-grid,
.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(220, 232, 246, 0.92);
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(18, 62, 115, 0.08);
}

.info-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-card p {
  margin-bottom: 0;
}

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

.resource-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(220, 232, 246, 0.92);
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(18, 62, 115, 0.08);
}

.resource-card span {
  display: inline-block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.resource-card a {
  margin-top: 4px;
  color: var(--navy);
  font-weight: 800;
}

.resource-card a:hover {
  color: var(--blue);
}

.experience-slab {
  display: grid;
  gap: 18px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(24px, 3vw, 34px);
}

.cta-band h2 {
  margin-bottom: 10px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(300px, 0.64fr);
  gap: 28px;
  align-items: start;
}

.contact-form-card {
  padding: clamp(24px, 3vw, 34px);
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

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

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

.form-field label {
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 750;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(247, 251, 255, 0.95);
  border: 1px solid rgba(197, 216, 240, 0.95);
  border-radius: 14px;
  font: inherit;
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(23, 105, 255, 0.16);
  border-color: rgba(23, 105, 255, 0.45);
}

.contact-side-stack {
  display: grid;
  gap: 18px;
}

.contact-note {
  margin-top: 14px;
  font-size: 0.92rem;
}

.faq-card {
  padding: 24px;
}

.faq-card h3 {
  margin-bottom: 8px;
}

.article-page {
  width: min(100% - 56px, 980px);
  margin: 0 auto;
  padding: 34px 0 72px;
}

.article-hero,
.article-card {
  padding: clamp(28px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(221, 234, 249, 0.95);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.article-hero {
  margin-bottom: 26px;
  background:
    radial-gradient(circle at 88% 16%, rgba(23, 105, 255, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(233, 244, 255, 0.84));
}

.article-hero h1,
.article-card h2 {
  max-width: none;
}

.article-hero p,
.article-card p,
.article-card li {
  color: var(--muted);
  line-height: 1.72;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
  color: #6f83a1;
  font-size: 0.9rem;
  font-weight: 700;
}

.article-card + .article-card {
  margin-top: 20px;
}

.article-card h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.08;
}

.article-card h3 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.article-card ul,
.article-card ol {
  margin: 14px 0 0;
  padding-left: 20px;
}

.article-card li + li {
  margin-top: 10px;
}

.article-card a {
  color: var(--blue);
  font-weight: 780;
}

.faq-section {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 20px 22px;
  background: rgba(247, 251, 255, 0.9);
  border: 1px solid rgba(220, 232, 246, 0.92);
  border-radius: 18px;
}

.faq-item h3 {
  margin-top: 0;
}

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

.legal-shell {
  min-height: auto;
}

.legal-page {
  width: min(100% - 56px, 960px);
  margin: 0 auto;
  padding: 54px 0 72px;
}

.legal-card {
  padding: clamp(28px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(221, 234, 249, 0.95);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.legal-card h1 {
  margin-bottom: 10px;
  font-size: clamp(2.25rem, 4vw, 3.6rem);
}

.legal-card h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.25;
}

.legal-card p {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.72;
}

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

.legal-card a {
  color: var(--blue);
  font-weight: 750;
}

.legal-updated {
  margin-bottom: 24px;
  color: #7a8da4;
  font-size: 0.92rem;
  font-weight: 750;
}

.legal-note {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(111, 143, 178, 0.18);
  font-size: 0.92rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: start;
  justify-content: space-between;
  width: min(100% - 32px, 1420px);
  margin: -2px auto 24px;
  padding: 20px 24px 0;
  color: #55708d;
  font-size: 0.92rem;
  border-top: 1px solid rgba(111, 143, 178, 0.18);
}

.footer-identity,
.footer-details {
  display: grid;
  gap: 6px;
}

.footer-identity span {
  color: #3f5f82;
  font-size: 0.94rem;
  font-weight: 700;
}

.footer-identity .brand-logo {
  color: #fff;
  font-size: 0.82rem;
}

.footer-identity small {
  margin-top: 2px;
  color: #7a8da4;
  font-size: 0.8rem;
  line-height: 1.35;
}

.footer-details {
  justify-items: end;
  text-align: right;
}

.footer-details span,
.footer-details a {
  color: #55708d;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.footer-details a:hover {
  color: var(--blue);
}

@media (max-width: 980px) {
  .page-shell {
    width: min(100% - 20px, 1420px);
    margin-top: 10px;
    border-radius: 22px;
  }

  .site-header,
  .section {
    width: min(100% - 36px, var(--max));
  }

  .hero,
  .section-heading,
  .split-heading,
  .channel,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 24px;
    padding-top: 30px;
    padding-bottom: 38px;
  }

  .hero-visual {
    min-height: auto;
  }

  .main-card {
    min-height: 300px;
  }

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

  .about .section-heading {
    padding: 6px 0 0;
  }

  .about-intro {
    grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
    gap: 32px;
  }

  .about-visual {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .service-grid,
  .portfolio-grid,
  .model-grid,
  .info-card-grid,
  .faq-grid,
  .resources-grid,
  .contact-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .process-timeline article::after {
    display: none;
  }

  .phone-card:nth-child(2),
  .phone-card:nth-child(4) {
    margin-top: 0;
  }

  .contact-details {
    justify-self: start;
    max-width: 480px;
  }

  .page-hero-card,
  .page-grid,
  .contact-layout,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .cta-band {
    justify-content: flex-start;
  }

  .contact-network {
    top: 142px;
    right: auto;
    bottom: auto;
    left: 30px;
    width: min(680px, calc(100% - 60px));
    min-width: 0;
    height: 120px;
    opacity: 0.07;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 18px 0;
  }

  .nav-toggle {
    display: block;
  }

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

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

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

  .section {
    padding: 58px 0;
  }

  .hero {
    gap: 20px;
    padding-top: 26px;
    padding-bottom: 28px;
  }

  h1 {
    font-size: 2.48rem;
    line-height: 0.94;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-copy {
    font-size: 1.05rem;
    margin-bottom: 18px;
  }

  .hero-actions,
  .comparison,
  .service-grid,
  .portfolio-grid,
  .mockup-stage,
  .process-timeline,
  .model-grid,
  .info-card-grid,
  .faq-grid,
  .resources-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

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

  .button {
    width: 100%;
    min-height: 46px;
    padding: 12px 10px;
    font-size: 0.9rem;
  }

  .hero-proof {
    display: flex;
    gap: 8px;
    margin-top: 14px;
  }

  .hero-proof span {
    padding: 7px 10px;
    font-size: 0.76rem;
  }

  .hero-visual {
    min-height: auto;
  }

  .main-card {
    min-height: 210px;
    padding: 20px;
    border-radius: 24px;
  }

  .main-card strong {
    font-size: 1.36rem;
  }

  .card-kicker {
    margin-bottom: 14px;
  }

  .hero-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
  }

  .hero-capability-grid span {
    min-height: 38px;
    padding: 8px;
    font-size: 0.72rem;
  }

  .hero-capability-grid .line-icon {
    width: 18px;
    height: 18px;
  }

  .supply-lines {
    display: none;
  }

  .about {
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 20px;
  }

  .about-visual {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
    max-height: none;
    border-radius: 20px;
  }

  .trust-card {
    padding: 18px;
  }

  .trust-card .line-icon {
    margin-bottom: 12px;
  }

  .category-tile.large {
    grid-row: auto;
    height: 430px;
    min-height: 300px;
  }

  .category-tile,
  .phone-card {
    min-height: 380px;
  }

  .category-tile {
    height: 430px;
  }

  .image-tile div {
    top: auto;
    right: 18px;
    bottom: 18px;
    left: 18px;
    min-height: 0;
    grid-template-rows: auto;
    row-gap: 8px;
    align-content: end;
  }

  .category-tile span,
  .category-tile h3,
  .category-tile p {
    min-height: 0;
  }

  .process-timeline article {
    min-height: auto;
  }

  .text-link {
    justify-self: start;
  }

  .contact-panel {
    padding: 28px;
  }

  .contact-details {
    max-width: none;
  }

  .contact-group div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 11px 0;
  }

  .coverage-group strong {
    font-size: 0.94rem;
  }

  .coverage-group p {
    font-size: 0.8rem;
  }

  .contact-tags {
    margin-top: 16px;
  }

  .contact-tags span {
    font-size: 0.74rem;
  }

  .contact-network {
    top: 138px;
    right: auto;
    bottom: auto;
    left: 24px;
    width: calc(100% - 48px);
    min-width: 0;
    height: 106px;
    opacity: 0.065;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-details {
    justify-items: start;
    text-align: left;
  }

  .legal-page {
    width: min(100% - 36px, 960px);
    padding: 34px 0 52px;
  }

  .legal-card {
    padding: 24px;
    border-radius: 20px;
  }

  .legal-card h2 {
    margin-top: 28px;
  }

  .article-page {
    width: min(100% - 36px, 980px);
    padding: 20px 0 52px;
  }

  .article-hero,
  .article-card {
    padding: 24px;
    border-radius: 20px;
  }

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

  .standard-page {
    width: min(100% - 36px, var(--max));
    padding: 20px 0 52px;
  }

  .page-hero-card,
  .content-card,
  .contact-form-card,
  .faq-card,
  .cta-band {
    padding: 24px;
    border-radius: 20px;
  }
}
