:root {
  --site-width: 1180px;
  --header-height: 72px;

  --black: #070a12;
  --navy: #0b1020;
  --navy-2: #111827;
  --ink: #101318;
  --muted: #5f6673;

  --page: #f5f7fb;
  --surface: #ffffff;
  --surface-2: #eef4ff;
  --surface-3: #eaf0f8;
  --line: #dbe3ef;

  --blue: #2563eb;
  --blue-light: #60a5fa;
  --blue-soft: #dbeafe;

  --gold: #d9a441;
  --gold-light: #f0c76a;
  --gold-dark: #8a641f;

  --shadow-soft: 0 18px 55px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 28px 80px rgba(15, 23, 42, 0.18);

  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --section-padding: clamp(50px, 6vh, 76px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--page);
  line-height: 1.5;
}

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

img {
  max-width: 100%;
}

.site-width {
  width: min(var(--site-width), calc(100% - 48px));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 10, 18, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 900;
  letter-spacing: -0.035em;
  min-width: 0;
}

.logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 12px;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.45vw, 18px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a {
  transition: color 0.18s ease;
}

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

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  color: white;
  background: var(--blue);
  border: 2px solid #93c5fd;
  font-weight: 900;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.22);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: #1d4ed8;
  border-color: white;
}

/* Hero */

.screen-section {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
}

.hero {
  color: white;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.35), transparent 32%),
    radial-gradient(circle at 16% 85%, rgba(217, 164, 65, 0.16), transparent 32%),
    linear-gradient(135deg, #070a12 0%, #0b1020 52%, #111827 100%);
  background-size: 48px 48px, 48px 48px, auto, auto, auto;
  padding: clamp(46px, 7vh, 72px) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.72fr);
  gap: clamp(34px, 5vw, 56px);
  align-items: center;
}

.eyebrow {
  color: var(--blue-light);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.72rem;
  margin: 0 0 12px;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 5vw, 4.45rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

h4 {
  margin: 17px 0 8px;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.03rem, 1.35vw, 1.14rem);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 2px solid currentColor;
  font-weight: 900;
  text-align: center;
  line-height: 1.15;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

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

.btn-primary {
  background: var(--blue);
  color: white;
  border-color: #93c5fd;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.26);
}

.btn-primary:hover {
  background: #1d4ed8;
  border-color: white;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.32);
}

.btn-secondary {
  background: white;
  color: var(--ink);
  border-color: #94a3b8;
}

.btn-secondary:hover {
  background: var(--blue-soft);
  color: #0f172a;
  border-color: var(--blue);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.16);
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: rgba(255, 255, 255, 0.46);
}

.hero .btn-secondary:hover {
  background: rgba(96, 165, 250, 0.18);
  border-color: var(--blue-light);
  color: white;
}

.full-width {
  width: 100%;
}

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

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-panel {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.24);
  box-shadow: var(--shadow-strong);
}

.panel-label {
  width: fit-content;
  margin: 0 0 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.16);
  color: var(--blue-light);
  font-size: 0.8rem;
  font-weight: 900;
}

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

.capability-item {
  padding: 15px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.capability-item strong {
  display: block;
  margin-bottom: 5px;
  color: white;
}

.capability-item span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

/* Sections */

.section {
  padding: var(--section-padding) 0;
}

/* Value section */

.value-highlight {
  padding: 42px 0;
  background: var(--page);
}

.value-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 92% 14%, rgba(37, 99, 235, 0.13), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #eef4ff 100%);
  border: 1px solid #d8e3f5;
  box-shadow: var(--shadow-soft);
}

.value-copy {
  max-width: 560px;
}

.value-copy h2 {
  margin-bottom: 0;
  color: var(--ink);
}

.value-body {
  max-width: 720px;
}

.value-body p {
  color: #3f4652;
  font-size: 1.04rem;
}

.lead-text {
  color: var(--ink) !important;
  font-size: clamp(1.1rem, 1.65vw, 1.26rem) !important;
  line-height: 1.42;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.value-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.value-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: white;
  border: 1px solid #cbd9ee;
  color: #12315f;
  font-size: 0.86rem;
  font-weight: 900;
}

/* About section */

.about-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(37, 99, 235, 0.1), transparent 28%),
    linear-gradient(180deg, var(--page) 0%, #ffffff 100%);
}

.about-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.55fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: stretch;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.about-copy {
  max-width: 800px;
}

.about-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.about-side {
  display: grid;
  gap: 16px;
  align-content: start;
}

.project-visual-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #0b1020;
  border: 1px solid rgba(96, 165, 250, 0.28);
  box-shadow: var(--shadow-strong);
}

.project-visual-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 12px;
  background: #f8fafc;
}

.project-visual-card figcaption {
  display: grid;
  gap: 6px;
  padding: 18px 20px 20px;
  color: white;
  background: #0b1020;
}

.project-visual-card figcaption span {
  color: var(--blue-light);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.project-visual-card figcaption strong {
  font-size: 1.05rem;
  line-height: 1.25;
}

.image-zoom-link {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(7, 10, 18, 0.82);
  color: white;
  border: 2px solid rgba(147, 197, 253, 0.75);
  font-size: 1.15rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.24);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.image-zoom-link:hover {
  transform: scale(1.06);
  background: var(--blue);
  border-color: white;
}

.proof-note {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  border: 1px solid #cbd9ee;
}

.proof-note strong {
  display: block;
  margin-bottom: 8px;
}

.proof-note span {
  display: block;
  color: var(--muted);
}

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

.trust-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
}

.trust-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--blue);
  font-weight: 900;
  font-size: 1.15rem;
}

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

.portfolio-note {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  margin-top: 22px;
  padding: clamp(26px, 4vw, 38px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #eef4ff 0%, #ffffff 100%);
  border: 1px solid #cbd9ee;
}

.portfolio-note p {
  color: var(--muted);
}

.portfolio-note p:last-child {
  margin-bottom: 0;
}

/* Lightbox */

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  padding: 28px;
}

.image-lightbox:target {
  display: grid;
  place-items: center;
}

.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 10, 18, 0.86);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  z-index: 201;
  width: min(1100px, 94vw);
  max-height: 92vh;
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  background: #0b1020;
  border: 1px solid rgba(147, 197, 253, 0.35);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.lightbox-content img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 18px;
  background: #f8fafc;
}

.lightbox-content p {
  margin: 0;
  color: white;
  font-weight: 900;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  border: 2px solid white;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

.lightbox-close:hover {
  background: #1d4ed8;
}

/* General split sections */

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.section-copy {
  max-width: 520px;
}

.section-body {
  max-width: 700px;
}

.section-body p,
.section-heading p,
.contact-card p,
.faq-heading p,
.process-card p,
.scope-card p {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-body p:last-child,
.contact-card p:last-child,
.scope-card p:last-child {
  margin-bottom: 0;
}

/* Services */

.services-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-2) 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}

.service-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.service-card.featured {
  border: 2px solid rgba(37, 99, 235, 0.55);
  box-shadow: 0 24px 70px rgba(37, 99, 235, 0.14);
}

.service-content {
  flex: 1 1 auto;
}

.service-action {
  width: 100%;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.service-top {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}

.service-meta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-tag {
  width: fit-content;
  max-width: calc(100% - 120px);
  margin: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #1e3a8a;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-start {
  flex: 0 0 auto;
  margin: 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff5dc;
  color: var(--gold-dark);
  font-weight: 900;
  font-size: 0.82rem;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.service-top h3 {
  margin-bottom: 0;
  overflow-wrap: normal;
  text-wrap: balance;
}

.service-summary {
  min-height: 70px;
  margin-bottom: 14px;
  color: var(--muted);
}

.service-card ul {
  margin: 0;
  padding-left: 18px;
}

.service-card li {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.94rem;
}

.compact-card .service-summary {
  min-height: 90px;
}

/* Process */

.process-section {
  background: var(--page);
}

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

.process-card {
  padding: 24px;
  min-height: 250px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.process-card span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 1.35rem;
}

/* Scope */

.dark-section {
  color: white;
  background:
    radial-gradient(circle at 85% 20%, rgba(37, 99, 235, 0.24), transparent 30%),
    linear-gradient(135deg, #070a12 0%, #0b1020 100%);
}

.dark-section .section-grid {
  align-items: center;
}

.dark-section .eyebrow {
  color: var(--blue-light);
}

.dark-section p {
  color: rgba(255, 255, 255, 0.72);
}

.scope-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(96, 165, 250, 0.24);
}

.scope-card h3 {
  margin-top: 24px;
}

.scope-card ul {
  margin: 0;
  padding-left: 18px;
  columns: 2;
  column-gap: 28px;
}

.scope-card li {
  break-inside: avoid;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.74);
}

/* Pricing */

.pricing-section {
  background: var(--surface-2);
}

/* FAQ */

.faq-section {
  background: var(--page);
}

.faq-layout {
  display: block;
}

.faq-heading {
  position: static;
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: center;
}

.faq-heading h2 {
  margin-bottom: 12px;
}

.faq-heading p {
  max-width: 620px;
  margin-inline: auto;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

details {
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
  letter-spacing: -0.025em;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--blue);
  font-size: 1.35rem;
  line-height: 1;
  flex: 0 0 auto;
}

details[open] summary::after {
  content: "–";
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

/* Contact */

.contact-section {
  background: var(--surface-3);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: 34px;
  padding: 36px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.small-text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Footer */

.site-footer {
  padding: 28px 0;
  background: var(--black);
  color: rgba(255, 255, 255, 0.68);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.9rem;
}

.footer-content p {
  margin: 0;
}

/* Tablet */

@media (max-width: 1040px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .section-grid,
  .value-card,
  .about-card,
  .portfolio-note,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 720px;
  }

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

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

  .service-summary,
  .compact-card .service-summary {
    min-height: auto;
  }
}

/* Mobile */

@media (max-width: 680px) {
  :root {
    --section-padding: 56px;
    --header-height: 68px;
  }

  .site-width {
    width: min(var(--site-width), calc(100% - 28px));
  }

  .brand span {
    font-size: 0.96rem;
  }

  .logo {
    width: 38px;
    height: 38px;
  }

  .nav-cta {
    display: none;
  }

  .screen-section {
    min-height: auto;
  }

  .hero {
    padding: 64px 0;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.65rem);
    letter-spacing: -0.058em;
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.75rem);
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .service-top {
    grid-template-columns: 1fr;
  }

  .service-top .price,
  .price {
    justify-self: start;
  }

  .price {
    width: fit-content;
  }

  .scope-card ul {
    columns: 1;
  }

  .contact-card,
  .about-card,
  .portfolio-note {
    padding: 26px;
  }

  .image-lightbox {
    padding: 14px;
  }

  .lightbox-content {
    width: 96vw;
    padding: 12px;
    border-radius: 22px;
  }

  .lightbox-close {
    top: -12px;
    right: -10px;
  }

  .footer-content {
    flex-direction: column;
  }
}
/* Interactive 3D model section */

.models-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(37, 99, 235, 0.11), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, var(--surface-2) 100%);
}

.models-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: end;
  margin-bottom: 30px;
}

.models-header p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.model-showcase {
  position: relative;
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.model-stage {
  min-height: 500px;
}

.model-slide {
  display: none;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}

.model-slide.is-active {
  display: grid;
  animation: modelFadeIn 0.22s ease both;
}

@keyframes modelFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.model-viewer-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #0b1020;
  border: 1px solid rgba(96, 165, 250, 0.28);
  box-shadow: var(--shadow-strong);
}

.model-viewer-shell model-viewer,
.standard-model-viewer {
  display: block;
  width: 100%;
  height: 460px;
  background: #f8fafc;
}

.model-view-toolbar {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 6;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  max-width: min(430px, calc(100% - 28px));
  padding: 7px;
  border-radius: 18px;
  background: rgba(7, 10, 18, 0.78);
  border: 1px solid rgba(147, 197, 253, 0.42);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.24);
  backdrop-filter: blur(12px);
}

.model-view-button {
  min-width: 42px;
  min-height: 32px;
  display: inline-grid;
  place-items: center;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.model-view-button:hover {
  transform: translateY(-1px);
  background: rgba(96, 165, 250, 0.24);
  border-color: rgba(147, 197, 253, 0.75);
}

.model-view-button.is-active {
  background: var(--blue);
  border-color: #bfdbfe;
  color: white;
}

.model-full-button {
  min-width: 36px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.14);
}

.model-copy {
  align-self: center;
}

.model-type-pill {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #1e3a8a;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.model-copy h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  letter-spacing: -0.055em;
}

.model-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.model-controls-help {
  margin-bottom: 0;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--surface-2);
  border: 1px solid #cbd9ee;
  font-weight: 800;
  color: #334155 !important;
}

.model-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 2px solid #cbd9ee;
  background: white;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.model-arrow:hover {
  background: var(--blue);
  border-color: white;
  color: white;
}

.model-arrow-left {
  left: -20px;
  transform: translateY(-50%);
}

.model-arrow-left:hover {
  transform: translateY(-50%) scale(1.06);
}

.model-arrow-right {
  right: -20px;
  transform: translateY(-50%);
}

.model-arrow-right:hover {
  transform: translateY(-50%) scale(1.06);
}

.model-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.model-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: #b7c5d8;
  cursor: pointer;
  transition: width 0.18s ease, background 0.18s ease;
}

.model-dot.is-active {
  width: 34px;
  background: var(--blue);
}

/* 3D model lightbox */

.model-lightbox {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: none;
  padding: 28px;
}

.model-lightbox.is-open {
  display: grid;
  place-items: center;
}

.model-lightbox-backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  background: rgba(7, 10, 18, 0.88);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.model-lightbox-content {
  position: relative;
  z-index: 241;
  width: min(1240px, 94vw);
  max-height: 92vh;
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 28px;
  background: #0b1020;
  border: 1px solid rgba(147, 197, 253, 0.35);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.model-lightbox-toolbar {
  top: 18px;
  right: 18px;
}

.expanded-model-viewer {
  width: 100%;
  height: min(76vh, 720px);
  border-radius: 18px;
  background: #f8fafc;
}

.expanded-model-info {
  display: grid;
  gap: 4px;
  text-align: center;
}

.expanded-model-info span {
  color: var(--blue-light);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.expanded-model-info strong {
  color: white;
  font-size: 1.05rem;
}

.model-lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 7;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  border: 2px solid white;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

.model-lightbox-close:hover {
  background: #1d4ed8;
}

@media (max-width: 1040px) {
  .models-header,
  .model-slide {
    grid-template-columns: 1fr;
  }

  .model-stage {
    min-height: auto;
  }

  .model-viewer-shell model-viewer,
  .standard-model-viewer {
    height: 420px;
  }

  .model-arrow-left {
    left: 10px;
  }

  .model-arrow-right {
    right: 10px;
  }
}

@media (max-width: 680px) {
  .models-header {
    margin-bottom: 22px;
  }

  .model-showcase {
    padding: 16px;
  }

  .model-viewer-shell model-viewer,
  .standard-model-viewer {
    height: 340px;
  }

  .model-view-toolbar {
    top: 10px;
    right: 10px;
    max-width: calc(100% - 20px);
    gap: 4px;
    padding: 6px;
    border-radius: 15px;
  }

  .model-view-button {
    min-width: 36px;
    min-height: 29px;
    padding: 5px 7px;
    font-size: 0.66rem;
  }

  .model-copy h3 {
    font-size: 1.55rem;
  }

  .model-arrow {
    top: 190px;
    width: 40px;
    height: 40px;
    font-size: 1.65rem;
  }

  .model-lightbox {
    padding: 14px;
  }

  .model-lightbox-content {
    width: 96vw;
    padding: 12px;
    border-radius: 22px;
  }

  .expanded-model-viewer {
    height: 72vh;
  }

  .model-lightbox-close {
    top: -12px;
    right: -10px;
  }
}

/* Content update: catalog + hourly pricing */

.catalog-section {
  background: linear-gradient(180deg, var(--surface-2) 0%, #ffffff 100%);
}

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

.catalog-card {
  min-height: 230px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.catalog-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #1e3a8a;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.catalog-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.services-grid-wide .service-card.featured {
  grid-column: span 2;
}

.pricing-lead {
  margin-bottom: 14px;
}

.scope-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(147, 197, 253, 0.22);
}

@media (max-width: 1040px) {
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid-wide .service-card.featured {
    grid-column: span 1;
  }
}

@media (max-width: 680px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-card {
    min-height: auto;
  }
}


body.no-scroll {
  overflow: hidden;
}

/* Services billing summary */

.services-billing-note {
  max-width: 760px;
  margin: -6px 0 34px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.16);
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.services-billing-note a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.services-billing-note a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .services-billing-note {
    margin-bottom: 28px;
    font-size: 0.94rem;
  }
}

/* Native payment links */

.native-pay-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.service-pay-btn {
  width: 100%;
  min-height: 56px;
  padding: 13px 16px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: none;
}

.service-pay-btn:hover {
  box-shadow: none;
}

.service-pay-btn:focus-visible,
.service-secondary-link:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 4px;
}


.service-secondary-link {
  display: inline-flex;
  width: fit-content;
  min-height: 22px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.service-secondary-link:hover {
  text-decoration: underline;
}

/*
  Service-card alignment

  Each card spans six shared grid rows:
  title area, summary, subheading, bullet list, payment button,
  and file-review link.

  Cards in the same visible row therefore use the same internal track sizes.
  The blue buttons and the links remain horizontally aligned at three-column
  and two-column widths without JavaScript or fixed-height text clipping.
*/

.services-grid.services-grid-wide.clean-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-rows: auto;
  column-gap: 22px;
  row-gap: 22px;
  align-items: stretch;
}

.services-grid.services-grid-wide.clean-services .service-card,
.services-grid.services-grid-wide.clean-services .service-card.compact-card,
.services-grid.services-grid-wide.clean-services .service-card.featured {
  grid-column: auto;
  grid-row: span 6;
  display: grid;
  grid-template-rows: subgrid;
  row-gap: 0;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  margin: 0;
  padding: clamp(22px, 2vw, 28px);
  overflow: visible;
  border-radius: 28px;
}

.services-grid.services-grid-wide.clean-services .service-content,
.services-grid.services-grid-wide.clean-services .service-action {
  display: contents;
}

.services-grid.services-grid-wide.clean-services .service-top {
  margin: 0 0 14px;
  min-height: 0;
  overflow: visible;
}

.services-grid.services-grid-wide.clean-services .service-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  overflow: visible;
}

.services-grid.services-grid-wide.clean-services .service-tag,
.services-grid.services-grid-wide.clean-services .service-start {
  width: fit-content;
  max-width: 100%;
  min-height: 30px;
  height: auto;
  margin: 0;
  padding: 7px 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
}

.services-grid.services-grid-wide.clean-services .service-start {
  min-width: 86px;
  justify-self: end;
}

.services-grid.services-grid-wide.clean-services .service-top h3 {
  min-height: 0;
  height: auto;
  max-height: none;
  margin: 0;
  display: block;
  overflow: visible;
  overflow-wrap: normal;
  word-break: normal;
  font-size: clamp(1.32rem, 1.56vw, 1.64rem);
  line-height: 1.14;
}

.services-grid.services-grid-wide.clean-services .service-summary,
.services-grid.services-grid-wide.clean-services .compact-card .service-summary {
  min-height: 0;
  height: auto;
  max-height: none;
  margin: 0 0 16px;
  display: block;
  overflow: visible;
  overflow-wrap: normal;
  word-break: normal;
  font-size: clamp(0.96rem, 1.02vw, 1.05rem);
  line-height: 1.44;
}

.services-grid.services-grid-wide.clean-services .service-content h4 {
  min-height: 0;
  height: auto;
  max-height: none;
  margin: 0 0 10px;
  display: block;
  overflow: visible;
}

.services-grid.services-grid-wide.clean-services .service-card ul {
  min-height: 0;
  height: auto;
  max-height: none;
  margin: 0 0 18px;
  padding-left: 21px;
  display: block;
  overflow: visible;
}

.services-grid.services-grid-wide.clean-services .service-card li {
  margin: 0 0 9px;
  padding-left: 3px;
  display: list-item;
  overflow: visible;
  overflow-wrap: normal;
  word-break: normal;
  font-size: clamp(0.91rem, 0.98vw, 1rem);
  line-height: 1.36;
}

.services-grid.services-grid-wide.clean-services .service-card li:last-child {
  margin-bottom: 0;
}

.services-grid.services-grid-wide.clean-services .native-pay-wrap,
.services-grid.services-grid-wide.clean-services .service-card.featured .native-pay-wrap {
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 74px;
  margin: 0;
  padding: 18px 0 0;
  align-self: stretch;
  border-top: 1px solid var(--line);
  box-shadow: none;
  filter: none;
}

.services-grid.services-grid-wide.clean-services .service-pay-btn,
.services-grid.services-grid-wide.clean-services .service-pay-btn:visited,
.services-grid.services-grid-wide.clean-services .service-pay-btn:hover,
.services-grid.services-grid-wide.clean-services .service-pay-btn:focus,
.services-grid.services-grid-wide.clean-services .service-pay-btn:focus-visible,
.services-grid.services-grid-wide.clean-services .service-pay-btn:active {
  width: 100%;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  margin: 0;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: normal;
  line-height: 1.12;
  transform: none;
  box-shadow: none;
  filter: none;
}


.services-grid.services-grid-wide.clean-services .service-secondary-link {
  min-height: 22px;
  height: 22px;
  max-height: 22px;
  margin: 12px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .services-grid.services-grid-wide.clean-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 20px;
  }
}

@media (max-width: 760px) {
  .services-grid.services-grid-wide.clean-services {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 18px;
  }

  .services-grid.services-grid-wide.clean-services .service-card,
  .services-grid.services-grid-wide.clean-services .service-card.compact-card,
  .services-grid.services-grid-wide.clean-services .service-card.featured {
    padding: 22px;
  }

  .services-grid.services-grid-wide.clean-services .service-meta {
    gap: 8px;
    margin-bottom: 12px;
  }

  .services-grid.services-grid-wide.clean-services .service-top h3 {
    font-size: clamp(1.24rem, 5.6vw, 1.48rem);
  }

  .services-grid.services-grid-wide.clean-services .service-summary,
  .services-grid.services-grid-wide.clean-services .compact-card .service-summary {
    font-size: 0.96rem;
    line-height: 1.4;
  }

  .services-grid.services-grid-wide.clean-services .service-card li {
    font-size: 0.92rem;
    line-height: 1.34;
  }
}

@media (max-width: 420px) {
  .services-grid.services-grid-wide.clean-services .service-card,
  .services-grid.services-grid-wide.clean-services .service-card.compact-card,
  .services-grid.services-grid-wide.clean-services .service-card.featured {
    padding: 20px;
  }

  .services-grid.services-grid-wide.clean-services .service-pay-btn {
    font-size: 0.94rem;
  }
}

/* Visible 3D model loading indicator */

.standard-model-viewer {
  --progress-bar-color: #38d5ff;
  --progress-bar-height: 9px;
  --progress-mask: rgba(7, 15, 28, 0.32);
}

.model-viewer-shell,
.model-lightbox-content {
  position: relative;
}

.model-loading-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  padding: 14px 15px;
  border-radius: 18px;
  border: 1px solid rgba(104, 226, 255, 0.85);
  background: rgba(3, 12, 25, 0.94);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.38),
    0 0 28px rgba(56, 213, 255, 0.26);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  backdrop-filter: blur(12px);
}

.model-viewer-shell.is-model-loading > .model-loading-overlay,
.model-lightbox-content.is-model-loading > .model-loading-overlay {
  opacity: 1;
  transform: translateY(0);
}

.model-loading-label {
  margin-bottom: 9px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f2fdff;
}

.model-loading-track {
  width: 100%;
  height: 13px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.model-loading-track span {
  display: block;
  width: 8%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #27c7ff, #7af6ff, #ffffff);
  box-shadow: 0 0 22px rgba(70, 225, 255, 0.82);
  transition: width 0.18s ease;
}

.has-model-error .model-loading-overlay {
  border-color: rgba(255, 140, 140, 0.6);
}

@media (max-width: 760px) {
  .model-loading-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}

/* V8: selected projects / ongoing work section */
.projects-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(37, 99, 235, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, var(--surface-2) 100%);
}

.projects-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.72fr);
  gap: 22px;
  align-items: stretch;
}

.project-feature-card,
.project-side-card {
  min-height: 360px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.project-feature-card {
  position: relative;
  color: white;
  border-color: rgba(147, 197, 253, 0.28);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 84% 16%, rgba(96, 165, 250, 0.32), transparent 34%),
    linear-gradient(135deg, #070a12 0%, #0b1020 54%, #111827 100%);
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.project-feature-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -90px;
  border-radius: 999px;
  background: rgba(217, 164, 65, 0.16);
  pointer-events: none;
}

.project-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
}

.project-status,
.project-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-status {
  color: #08111f;
  background: #bfdbfe;
}

.project-status.soft {
  color: #1e3a8a;
  background: var(--blue-soft);
  margin-bottom: 18px;
}

.project-category {
  color: #fff7d6;
  background: rgba(217, 164, 65, 0.18);
  border: 1px solid rgba(240, 199, 106, 0.38);
}

.project-feature-card h3,
.project-side-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.project-feature-card h3,
.project-feature-card p {
  position: relative;
  z-index: 1;
}

.project-title-line {
  max-width: 760px;
  margin-bottom: 18px;
  color: #dbeafe;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  font-weight: 800;
  line-height: 1.35;
}

.project-feature-card p:not(.project-title-line),
.project-side-card p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
}

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

.project-points {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.project-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #eaf2ff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  font-weight: 800;
}

.project-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

@media (max-width: 980px) {
  .projects-layout {
    grid-template-columns: 1fr;
  }

  .project-feature-card,
  .project-side-card {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .project-feature-card,
  .project-side-card {
    padding: 22px;
    border-radius: 24px;
  }

  .project-card-top {
    margin-bottom: 18px;
  }

  .project-status,
  .project-category {
    font-size: 0.66rem;
    padding: 7px 10px;
  }

  .project-points {
    gap: 8px;
    margin-top: 22px;
  }

  .project-points span {
    min-height: 32px;
    font-size: 0.78rem;
  }
}
