:root {
  --bg: #050506;
  --bg-alt: #131316;
  --text: #f5f5f7;
  --text-secondary: #a1a1a6;
  --accent: #2997ff;
  --accent-hover: #47a1ff;
  --accent-rgb: 41, 151, 255;
  --border: rgba(255, 255, 255, 0.1);
  --nav-bg: rgba(8, 8, 10, 0.7);
  --card-bg: #16161a;
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-shadow: rgba(0, 0, 0, 0.35);
  --glass-shadow-tight: rgba(0, 0, 0, 0.45);
  --glass-shadow-soft: rgba(0, 0, 0, 0.55);
  --spot: rgba(255, 255, 255, 0.09);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

section[id] { scroll-margin-top: 84px; }

/* Grain overlay for premium texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

::selection { background: rgba(var(--accent-rgb), 0.25); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; border: 2px solid var(--bg); background-clip: padding-box; }
::-webkit-scrollbar-thumb:hover { background: var(--text-secondary); background-clip: padding-box; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.nav.scrolled {
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: padding 0.4s var(--ease);
}

.nav.scrolled .nav-inner { padding: 11px 24px; }

.nav-logo {
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.18);
  transition: box-shadow 0.3s var(--ease);
}

.nav-logo:hover .nav-logo-dot { box-shadow: 0 0 0 6px rgba(var(--accent-rgb), 0.24); }

.nav-links {
  position: relative;
  display: flex;
  gap: 28px;
  font-size: 13px;
  color: var(--text-secondary);
  flex: 1;
  justify-content: center;
}

.nav-links a { position: relative; padding: 4px 0; transition: color 0.25s var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }

.nav-indicator {
  position: absolute;
  bottom: -1px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0;
  transition: transform 0.4s var(--ease), width 0.4s var(--ease), opacity 0.3s ease;
  pointer-events: none;
}

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--text);
  transition: color 0.25s var(--ease);
}

.nav-cta:hover { color: var(--accent); }

/* Buttons */
.btn {
  position: relative;
  padding: 13px 28px;
  border-radius: 980px;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  overflow: hidden;
  transition: transform 0.35s var(--ease), background-color 0.25s ease, color 0.25s ease, box-shadow 0.35s var(--ease);
  will-change: transform;
}

.btn span { position: relative; z-index: 1; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 2px rgba(var(--accent-rgb), 0.2);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-secondary:hover {
  background: rgba(var(--accent-rgb), 0.1);
}

.btn:active { transform: scale(0.96) !important; }

/* Hero — aurora gradient mesh instead of stock photo */
.hero {
  position: relative;
  padding: 176px 24px 140px;
  text-align: center;
  overflow: hidden;
  background: #050608;
  isolation: isolate;
}

.hero-aurora {
  position: absolute;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(38% 42% at 22% 28%, rgba(0, 113, 227, 0.55), transparent 70%),
    radial-gradient(34% 40% at 78% 24%, rgba(122, 61, 255, 0.42), transparent 70%),
    radial-gradient(42% 46% at 50% 82%, rgba(0, 200, 210, 0.28), transparent 70%),
    #050608;
  filter: blur(60px) saturate(140%);
  animation: aurora-drift 24s ease-in-out infinite alternate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(60% 60% at 50% 40%, #000 30%, transparent 100%);
}

@keyframes aurora-drift {
  0% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  50% { transform: translate3d(2%, -3%, 0) rotate(6deg) scale(1.08); }
  100% { transform: translate3d(-3%, 2%, 0) rotate(-4deg) scale(1.02); }
}

.hero-inner { max-width: 760px; margin: 0 auto; position: relative; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px 6px 10px;
  border-radius: 980px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.25);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(36px, 6.4vw, 64px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 0 0 24px;
  color: #ffffff;
}

.hero h1 .accent-text {
  background: linear-gradient(120deg, #6bb6ff 0%, #a58bff 50%, #6bb6ff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 6s linear infinite;
}

@keyframes shine {
  to { background-position: 200% center; }
}

.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  margin: 0 auto 44px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn-secondary { color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.hero .btn-secondary:hover { background: rgba(255, 255, 255, 0.1); }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: -84px;
  transform: translateX(-50%);
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  opacity: 0.8;
}

.scroll-cue::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 6px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: cue-bounce 1.8s ease-in-out infinite;
}

@keyframes cue-bounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  60% { transform: translate(-50%, 10px); opacity: 0; }
}

/* Tiles */
.tiles {
  padding: 40px 24px 100px;
  background: var(--bg-alt);
}

.tile-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tile-grid > .tile:last-child:nth-child(3n+1) {
  grid-column: 2;
}

@media (max-width: 860px) {
  .tile-grid > .tile:last-child:nth-child(3n+1) { grid-column: auto; }
}

.tile {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 24px;
  padding: 36px 32px;
  border: 1px solid var(--glass-border);
  box-shadow:
    0 2px 6px var(--glass-shadow-tight),
    0 12px 24px var(--glass-shadow),
    0 32px 56px var(--glass-shadow-soft);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  transform-style: preserve-3d;
  perspective: 800px;
  overflow: hidden;
  will-change: transform;
}

.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), var(--spot), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.tile:hover::before { opacity: 1; }

.tile:hover {
  box-shadow:
    0 4px 10px var(--glass-shadow-tight),
    0 20px 36px var(--glass-shadow),
    0 48px 80px var(--glass-shadow-soft);
}

.tile-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent);
  margin-bottom: 20px;
  transition: transform 0.5s var(--ease), background 0.3s ease;
}

.tile-icon svg { width: 24px; height: 24px; }

.tile:hover .tile-icon {
  transform: scale(1.08) rotate(-4deg);
  background: rgba(var(--accent-rgb), 0.18);
}

.tile h2 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--text);
}

.tile p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 20px;
}

.tile-arrow {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.tile-arrow svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.tile:hover .tile-arrow svg { transform: translateX(4px); }

/* Block sections */
.block { padding: 108px 24px; }
.block-alt { background: var(--bg-alt); }

.block-inner { max-width: 1000px; margin: 0 auto; }

.block-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-align: center;
  margin-bottom: 12px;
}

.block-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: center;
  line-height: 1.15;
  margin: 0 0 56px;
  color: var(--text);
}

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

.service {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 18px;
  padding: 30px 26px;
  border: 1px solid var(--glass-border);
  box-shadow:
    0 2px 6px var(--glass-shadow-tight),
    0 12px 24px var(--glass-shadow),
    0 32px 56px var(--glass-shadow-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s ease;
  overflow: hidden;
}

.service::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), var(--spot), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service:hover::before { opacity: 1; }

.service:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 10px var(--glass-shadow-tight),
    0 20px 36px var(--glass-shadow),
    0 40px 64px var(--glass-shadow-soft);
}

.service h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  color: var(--text);
}

.service p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 18px;
  min-height: 42px;
}

.service-extra {
  display: none;
}

.service-grid.expanded .service-extra {
  display: block;
  animation: card-in 0.5s var(--ease-soft) both;
}

@keyframes card-in {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.show-more {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 32px auto 0;
  padding: 12px 26px;
  border-radius: 980px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--accent);
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.3s var(--ease);
}

.show-more:hover {
  background: rgba(var(--accent-rgb), 0.08);
  border-color: rgba(var(--accent-rgb), 0.3);
}

.show-more:active { transform: scale(0.96); }

.show-more .chevron {
  display: inline-block;
  transition: transform 0.35s var(--ease);
}

.show-more.is-expanded .chevron {
  transform: rotate(180deg);
}

.price {
  font-size: 17px;
  font-weight: 600;
  color: var(--accent);
}

/* Equipment spotlight */
.equip-spotlight {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 48px;
  margin-bottom: 64px;
}

.equip-text { text-align: left; }
.equip-text .block-eyebrow { text-align: left; margin-bottom: 16px; }
.equip-text .equip-title { text-align: left; margin: 0; }

.equip-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.equip-illustration {
  width: 100%;
  max-width: 420px;
  height: auto;
  color: var(--text);
  filter: drop-shadow(0 24px 48px var(--glass-shadow-soft));
}

@media (max-width: 860px) {
  .equip-spotlight { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .equip-text, .equip-text .block-eyebrow, .equip-text .equip-title { text-align: center; }
}

/* Install process */
.install-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--glass-border);
  box-shadow:
    0 2px 6px var(--glass-shadow-tight),
    0 12px 24px var(--glass-shadow),
    0 32px 56px var(--glass-shadow-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), var(--spot), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.step-card:hover::before { opacity: 1; }

.step-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 10px var(--glass-shadow-tight),
    0 20px 36px var(--glass-shadow),
    0 40px 64px var(--glass-shadow-soft);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.step-illustration {
  display: block;
  width: 72px;
  height: 72px;
  color: var(--text);
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--text);
}

.step-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

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

/* Prices */
.prices { padding: 108px 24px; text-align: center; }

.prices-inner { max-width: 640px; margin: 0 auto; }

.prices-sub {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 48px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.price-table tr {
  transition: background 0.25s ease;
}

.price-table tr:hover { background: rgba(var(--accent-rgb), 0.05); }

.price-table td {
  padding: 18px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--text);
  transition: color 0.25s ease;
}

.price-table td:first-child { border-radius: 10px 0 0 10px; }
.price-table td:last-child { border-radius: 0 10px 10px 0; text-align: right; font-weight: 600; }

.calc-cta {
  margin-top: 32px;
}

/* Contact */
.contact {
  position: relative;
  padding: 130px 24px;
  text-align: center;
  overflow: hidden;
  background: #050608;
  isolation: isolate;
}

.contact .hero-aurora {
  background:
    radial-gradient(40% 46% at 75% 30%, rgba(0, 113, 227, 0.5), transparent 70%),
    radial-gradient(36% 42% at 20% 70%, rgba(122, 61, 255, 0.38), transparent 70%),
    radial-gradient(30% 34% at 50% 20%, rgba(0, 200, 210, 0.22), transparent 70%),
    #050608;
  animation-duration: 28s;
}

.contact-inner { position: relative; }

.contact-inner h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #ffffff;
}

.contact-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  margin: 0 0 36px;
}

.contact .btn-secondary { color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.contact .btn-secondary:hover { background: rgba(255, 255, 255, 0.1); }

/* Footer */
.footer {
  padding: 32px 24px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-inner a { transition: color 0.25s ease; }
.footer-inner a:hover { color: var(--accent); }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-soft), transform 0.8s var(--ease-soft);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Calculator */
.calc-item {
  position: relative;
  display: block;
  cursor: pointer;
}

.calc-checkbox {
  position: absolute;
  top: 26px;
  right: 22px;
  width: 22px;
  height: 22px;
  accent-color: var(--accent);
  cursor: pointer;
}

.calc-item h3,
.calc-item p {
  padding-right: 36px;
}

.calc-item.selected {
  box-shadow:
    inset 0 0 0 2px var(--accent),
    0 2px 6px var(--glass-shadow-tight),
    0 12px 24px var(--glass-shadow),
    0 32px 56px var(--glass-shadow-soft);
}

.calc-summary {
  position: sticky;
  bottom: 0;
  z-index: 90;
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid var(--border);
  padding: 16px 24px calc(16px + env(safe-area-inset-bottom));
  transform: translateY(0);
  transition: transform 0.4s var(--ease);
}

.calc-summary-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.calc-summary-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.calc-summary-text span {
  font-size: 13px;
  color: var(--text-secondary);
}

.calc-summary-text strong {
  font-size: 18px;
  font-weight: 600;
}

.calc-summary-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.calc-summary-actions .btn {
  padding: 11px 22px;
  font-size: 14px;
}

.calc-copy-btn {
  padding: 11px 22px;
  border-radius: 980px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.3s var(--ease);
}

.calc-copy-btn:hover {
  background: rgba(var(--accent-rgb), 0.08);
}

.calc-copy-btn:active { transform: scale(0.96); }

/* Responsive */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-indicator { display: none; }
  .tile-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .hero { padding: 130px 20px 90px; }
  .scroll-cue { display: none; }
  .block { padding: 76px 20px; }
  .contact { padding: 92px 20px; }
  .calc-summary-inner { justify-content: center; text-align: center; }
  .tile, .service { transform: none !important; }
}

@media (hover: none) {
  .tile:hover, .service:hover { transform: none; }
}
