:root {
  --bg: #060810;
  --bg-soft: #0f1318;
  --panel: rgba(18, 22, 28, 0.84);
  --panel-strong: rgba(20, 24, 30, 0.96);
  --text: #f6f8fa;
  --muted: #9eb3c8;
  --line: rgba(100, 150, 220, 0.18);
  --blue: #6495ed;
  --blue-deep: #3d6bb8;
  --blue-soft: #a8c7fa;
  --shadow: 0 30px 90px rgba(0, 20, 50, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: linear-gradient(
    -45deg,
    #050710,
    #0a0f18,
    #1a2540,
    #0d1420,
    #0a0f18,
    #050710
  );
  background-size: 600% 600%;
  animation: gradientShift 8s ease infinite;
  overflow-x: hidden;
  position: relative;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(100, 150, 220, 0.25), transparent 60%),
    radial-gradient(circle at bottom right, rgba(100, 150, 220, 0.2), transparent 60%);
  animation: ambientPulse 3s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes ambientPulse {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.15;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 85%);
}

.ambient,
.noise {
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
}

.ambient {
  width: 35rem;
  height: 35rem;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.ambient-1 {
  top: 5rem;
  left: -5rem;
  background: var(--blue);
  animation: ambientFloat1 8s ease-in-out infinite;
}

.ambient-2 {
  right: -4rem;
  bottom: 10rem;
  background: #2a4a7e;
  animation: ambientFloat2 10s ease-in-out infinite;
}

@keyframes ambientFloat1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(80px, -60px) scale(1.2);
  }
  50% {
    transform: translate(40px, 80px) scale(0.9);
  }
  75% {
    transform: translate(-60px, 40px) scale(1.1);
  }
}

@keyframes ambientFloat2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(-90px, 70px) scale(1.15);
  }
  50% {
    transform: translate(-40px, -60px) scale(0.85);
  }
  75% {
    transform: translate(60px, -80px) scale(1.05);
  }
}

.noise {
  inset: 0;
  opacity: 0.035;
  background-image: radial-gradient(#ffffff 0.5px, transparent 0.5px);
  background-size: 10px 10px;
}

/* Analytical Background Elements */
.bg-analytics {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Data Points */
.data-point {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-soft);
  box-shadow: 0 0 20px rgba(100, 150, 220, 0.5);
  animation: dataPointPulse 3s ease-in-out infinite;
}

.data-point:nth-child(2) { animation-delay: 0.5s; }
.data-point:nth-child(3) { animation-delay: 1s; }
.data-point:nth-child(4) { animation-delay: 1.5s; }
.data-point:nth-child(5) { animation-delay: 2s; }

@keyframes dataPointPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.8;
  }
}

/* Animated Line Charts */
.bg-chart {
  position: absolute;
  width: 300px;
  height: 150px;
  opacity: 0.6;
}

.bg-chart-1 {
  top: 10%;
  right: 5%;
  animation: chartFloat 20s ease-in-out infinite;
}

.bg-chart-2 {
  bottom: 15%;
  left: 3%;
  animation: chartFloat 25s ease-in-out infinite reverse;
}

@keyframes chartFloat {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-30px) translateX(20px);
  }
}

/* Data Grid */
.data-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(100, 150, 220, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 150, 220, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridScroll 30s linear infinite;
}

@keyframes gridScroll {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(80px, 80px);
  }
}

/* Floating Metrics */
.floating-metric {
  position: absolute;
  padding: 0.5rem 1rem;
  background: rgba(100, 150, 220, 0.08);
  border: 1px solid rgba(100, 150, 220, 0.15);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  animation: metricFloat 6s ease-in-out infinite;
}

.floating-metric:nth-child(7) { animation-delay: 0s; }
.floating-metric:nth-child(8) { animation-delay: 2s; }
.floating-metric:nth-child(9) { animation-delay: 4s; }

.metric-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-soft);
  font-family: 'Courier New', monospace;
  text-shadow: 0 0 10px rgba(100, 150, 220, 0.5);
}

@keyframes metricFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-20px) scale(1.05);
    opacity: 0.8;
  }
}

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

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(8, 10, 15, 0.72);
  border-bottom: 1px solid rgba(100, 150, 220, 0.12);
}

.nav {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.9rem;
  border: 1px solid rgba(100, 150, 220, 0.28);
  background: linear-gradient(135deg, rgba(100, 150, 220, 0.2), rgba(61, 107, 184, 0.08));
  color: var(--blue-soft);
  font-weight: 800;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  letter-spacing: -0.03em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.18rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  color: var(--muted);
}

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

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.3rem;
  font-weight: 600;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
}

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

.button.small {
  padding: 0.7rem 1rem;
}

.button.primary {
  color: #0c0f14;
  border: none;
  background: linear-gradient(135deg, var(--blue-soft), var(--blue));
  box-shadow: 0 16px 40px rgba(61, 107, 184, 0.25);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.02);
}

.button.full {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 5rem);
  padding: 5rem 0 3rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--blue);
}

.hero h1,
.section-heading h2,
.cta-panel h2,
.contact-card h2,
.panel-header h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  max-width: 11ch;
}

.hero-text,
.section-intro,
.service-card p,
.info-card p,
.step-card p,
.cta-panel li,
.contact-card p,
.contact-box p,
.metric-card span,
.insight-list,
.trusted-by p {
  color: var(--muted);
}

.hero-text {
  max-width: 62ch;
  font-size: 1.08rem;
  margin-top: 1.35rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-metrics div,
.dashboard-card,
.service-card,
.info-card,
.step-card,
.cta-panel,
.contact-card,
.contact-box,
.logo-strip span {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-metrics div {
  padding: 1rem;
}

.hero-metrics strong {
  display: block;
  color: var(--blue-soft);
  margin-bottom: 0.25rem;
}

.dashboard-card {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(18, 22, 30, 0.94), rgba(12, 14, 20, 0.96));
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.panel-header h2 {
  font-size: 1.65rem;
}

.card-label {
  margin: 0 0 0.55rem;
  color: var(--blue);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.status-pill,
.service-index,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--blue-soft);
  background: rgba(100, 150, 220, 0.08);
}

.status-pill {
  padding: 0.45rem 0.75rem;
  font-size: 0.8rem;
  white-space: nowrap;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.metric-card,
.chart-card {
  border: 1px solid rgba(100, 150, 220, 0.12);
  border-radius: 1.2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
}

.metric-card strong {
  display: block;
  font-size: 1.85rem;
  color: var(--text);
  margin-top: 0.4rem;
}

.chart-card {
  margin-top: 1rem;
}

.chart-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.chart-head strong {
  color: var(--blue-soft);
  font-size: 0.9rem;
}

.bars {
  display: flex;
  align-items: end;
  gap: 0.7rem;
  height: 12rem;
}

.bar {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--blue-soft), var(--blue-deep));
}

.b1 { height: 36%; }
.b2 { height: 52%; }
.b3 { height: 68%; }
.b4 { height: 61%; }
.b5 { height: 86%; }

.insight-list {
  margin: 1rem 0 0;
  padding-left: 1rem;
}

.section {
  padding: 2.2rem 0;
}

/* Statistics Section */
.stats-section {
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(180deg, rgba(100, 150, 220, 0.08), rgba(100, 150, 220, 0.02));
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(100, 150, 220, 0.15);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  animation: statIconBounce 2s ease-in-out infinite;
}

.stat-card:nth-child(1) .stat-icon { animation-delay: 0s; }
.stat-card:nth-child(2) .stat-icon { animation-delay: 0.2s; }
.stat-card:nth-child(3) .stat-icon { animation-delay: 0.4s; }
.stat-card:nth-child(4) .stat-icon { animation-delay: 0.6s; }

@keyframes statIconBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue-soft);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
}

.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.trusted-by {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.logo-strip span {
  padding: 0.6rem 0.95rem;
  color: var(--muted);
}

.section-heading {
  margin-bottom: 1.7rem;
}

.section-heading.split {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
}

.section-heading h2,
.cta-panel h2,
.contact-card h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  max-width: 14ch;
}

.section-intro {
  max-width: 42ch;
}

.services-grid,
.industries-grid,
.approach-grid {
  display: grid;
  gap: 1.2rem;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

#services .services-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}

.service-card,
.info-card,
.step-card {
  padding: 1.5rem;
  position: relative;
}

.service-icon {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 100px;
}

.service-icon lottie-player {
  filter: drop-shadow(0 4px 12px rgba(100, 150, 220, 0.15));
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon lottie-player {
  transform: scale(1.1);
}

.service-card.featured {
  background: linear-gradient(135deg, rgba(100, 150, 220, 0.12), rgba(255, 255, 255, 0.015));
}

.service-index,
.step-number {
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 1rem;
  font-size: 0.86rem;
  font-weight: 700;
}

.service-card h3,
.info-card h3,
.step-card h3 {
  margin: 0 0 0.55rem;
}

.industries-grid,
.approach-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cta-panel,
.contact-card {
  padding: 1.9rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
  align-items: center;
}

.cta-panel ul {
  margin: 0;
  padding-left: 1.2rem;
}

/* Contact Section */
.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-description {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  background: linear-gradient(135deg, rgba(100, 150, 220, 0.08), rgba(100, 150, 220, 0.02));
  border: 1px solid var(--line);
  border-radius: 1rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.contact-method:hover {
  transform: translateX(5px);
  border-color: rgba(100, 150, 220, 0.3);
}

.method-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(100, 150, 220, 0.1);
  border-radius: 0.8rem;
}

.method-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.method-text strong {
  color: var(--text);
  font-size: 1rem;
}

.method-text span {
  color: var(--blue-soft);
  font-size: 0.95rem;
}

.contact-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

/* Contact Form */
.contact-form-container {
  background: linear-gradient(180deg, rgba(19, 24, 32, 0.9), rgba(13, 16, 22, 0.96));
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(100, 150, 220, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.form-group select {
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .button {
  margin-top: 0.5rem;
  cursor: pointer;
}

/* About Section */
.about-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-text p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-text strong {
  color: var(--blue-soft);
  font-weight: 600;
}

.about-text em {
  color: var(--text);
  font-style: italic;
}

.about-founder {
  margin-top: 1rem;
}

.founder-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(100, 150, 220, 0.1), rgba(100, 150, 220, 0.02));
  border: 1px solid var(--line);
  border-radius: 1.2rem;
}

.founder-initial {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-soft), var(--blue));
  color: #0c0f14;
  font-size: 2rem;
  font-weight: 800;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(100, 150, 220, 0.3);
}

.founder-info {
  flex: 1;
}

.founder-info h4 {
  margin: 0 0 0.3rem;
  font-size: 1.4rem;
  color: var(--text);
}

.founder-info p {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.founder-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(100, 150, 220, 0.15);
  border: 1px solid rgba(100, 150, 220, 0.3);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--blue-soft);
  font-weight: 600;
}

.about-values h3 {
  margin: 0 0 1.5rem;
  font-size: 1.8rem;
  color: var(--text);
}

.value-grid {
  display: grid;
  gap: 1.2rem;
}

.value-card {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-radius: 1rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.value-card:hover {
  transform: translateX(5px);
  border-color: rgba(100, 150, 220, 0.3);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.value-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--text);
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.site-footer {
  padding: 1rem 0 3rem;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .hero,
  .cta-panel,
  .contact-section,
  .about-section,
  .services-grid,
  .industries-grid,
  .approach-grid,
  .section-heading.split,
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

  .section-heading.split {
    display: grid;
    align-items: start;
  }

  .hero {
    min-height: auto;
    padding-top: 3.8rem;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    padding: 0.8rem 0;
  }

  .nav-links {
    position: absolute;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    min-width: 15rem;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border-radius: 1rem;
    background: rgba(16, 18, 24, 0.98);
    border: 1px solid var(--line);
  }

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

  .hero-metrics,
  .metric-row,
  .trusted-by,
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .panel-header,
  .chart-head {
    flex-direction: column;
  }

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