/* ================================================================
   DUECK AI INTEGRATION — Clean, Minimal Light Theme
   Inspired by Squarespace's modern aesthetic
   ================================================================ */

/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f5;
  --bg-muted: #f0f0ec;
  --text: #1a1a1a;
  --text-secondary: #6b6b6b;
  --text-tertiary: #999999;
  --accent: #1a1a1a;
  --accent-hover: #333333;
  --border: #e5e5e5;
  --border-light: #eeeeee;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'DM Mono', monospace;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --section-py: 120px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── SECTION HELPERS ─── */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 14px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn--sm { padding: 10px 24px; font-size: 13px; }
.btn--lg { padding: 16px 36px; font-size: 15px; }
.btn--full { width: 100%; }

.btn--dark {
  background: var(--accent);
  color: #ffffff;
}

.btn--dark:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--text);
  transform: translateY(-1px);
}

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s var(--ease);
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav--scrolled {
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
}

.nav__logo {
  display: flex;
  align-items: center;
  z-index: 10;
}

.nav__logo-text {
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav__logo-accent {
  color: var(--text-tertiary);
  font-weight: 400;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

.nav__actions { display: flex; align-items: center; gap: 16px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.nav__hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  padding: 140px 0 80px;
}

.hero__container {
  display: flex;
  align-items: center;
  gap: 80px;
}

.hero__content {
  flex: 1;
  min-width: 0;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

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

/* ─── HERO VISUAL (mockup) ─── */
.hero__visual {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.hero__mockup {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero__mockup-screen {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.08);
}

.mockup-bar {
  display: flex;
  gap: 6px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-light);
}

.mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg-muted);
}

.mockup-content {
  padding: 20px;
}

.mockup-nav {
  height: 12px;
  background: var(--bg-muted);
  border-radius: 6px;
  margin-bottom: 24px;
  width: 60%;
}

.mockup-hero-block {
  height: 80px;
  background: var(--bg-muted);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.mockup-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mockup-card {
  height: 60px;
  background: var(--bg-muted);
  border-radius: var(--radius-sm);
}

/* Widget chat bubble on mockup */
.hero__mockup-widget {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 240px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  animation: float 4s ease-in-out infinite;
}

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

.widget-bubble {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 12px;
}

.widget-bubble svg {
  width: 16px;
  height: 16px;
}

.widget-chat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.widget-chat__msg {
  font-size: 11px;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 90%;
}

.widget-chat__msg--ai {
  background: var(--bg-soft);
  color: var(--text);
  align-self: flex-start;
}

.widget-chat__msg--user {
  background: var(--accent);
  color: #fff;
  align-self: flex-end;
}

/* ─── LOGO BAR (Industries) ─── */
.logobar {
  padding: 48px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-soft);
}

.logobar__text {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.logobar__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.logobar__tags span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--bg);
  transition: all 0.2s var(--ease);
}

.logobar__tags span:hover {
  border-color: var(--text);
  color: var(--text);
}

/* ─── SERVICES ─── */
.services {
  padding: var(--section-py) 0;
}

.services__header {
  margin-bottom: 64px;
}

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

.service-card {
  padding: 40px 36px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
}

.service-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.service-card__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}

.service-card__title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── FEATURE SPLIT ─── */
.feature {
  padding: var(--section-py) 0;
  background: var(--bg-soft);
}

.feature__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature__text {
  max-width: 480px;
}

.feature__desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.feature__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature__list li {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  padding-left: 24px;
  position: relative;
}

.feature__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--text);
  border-radius: 50%;
}

/* Phone mockup */
.feature__visual {
  display: flex;
  justify-content: center;
}

.feature__phone {
  width: 280px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.08);
}

.phone-notch {
  width: 120px;
  height: 24px;
  background: var(--bg-soft);
  border-radius: 100px;
  margin: 0 auto 20px;
}

.phone-screen {
  padding: 20px;
}

.phone-call {
  text-align: center;
}

.phone-call__avatar {
  width: 64px;
  height: 64px;
  background: var(--accent);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.phone-call__name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.phone-call__status {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 24px;
}

.phone-call__wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 40px;
}

.phone-call__wave span {
  width: 3px;
  background: var(--accent);
  border-radius: 100px;
  animation: wave 1.2s ease-in-out infinite;
}

.phone-call__wave span:nth-child(1) { height: 12px; animation-delay: 0s; }
.phone-call__wave span:nth-child(2) { height: 20px; animation-delay: 0.1s; }
.phone-call__wave span:nth-child(3) { height: 28px; animation-delay: 0.2s; }
.phone-call__wave span:nth-child(4) { height: 36px; animation-delay: 0.3s; }
.phone-call__wave span:nth-child(5) { height: 28px; animation-delay: 0.4s; }
.phone-call__wave span:nth-child(6) { height: 20px; animation-delay: 0.5s; }
.phone-call__wave span:nth-child(7) { height: 12px; animation-delay: 0.6s; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ─── HOW IT WORKS ─── */
.how {
  padding: var(--section-py) 0;
}

.how__header {
  margin-bottom: 64px;
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.how__step {
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.how__step-line {
  position: absolute;
  top: 12px;
  left: 50%;
  right: -50%;
  height: 1px;
  background: var(--border);
}

.how__step:last-child .how__step-line { display: none; }

.how__step-dot {
  width: 24px;
  height: 24px;
  background: var(--bg);
  border: 2px solid var(--text);
  border-radius: 50%;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.how__step-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.how__step-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── DEMO ─── */
.demo {
  padding: var(--section-py) 0;
  background: var(--bg-soft);
}

.demo__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.demo__desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 48px;
}

.demo__widget-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.demo__arrow {
  animation: bounce-down 2s ease-in-out infinite;
  color: var(--text-tertiary);
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

.demo__hint {
  font-size: 14px;
  color: var(--text-tertiary);
  font-style: italic;
}

/* ─── PRICING ─── */
.pricing {
  padding: var(--section-py) 0;
}

.pricing__header {
  margin-bottom: 64px;
}

.pricing__sub {
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 12px;
}

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

.pricing-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  position: relative;
  background: var(--bg);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.pricing-card--featured {
  border-color: var(--text);
  border-width: 2px;
}

.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  background: var(--accent);
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__name {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.pricing-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.pricing-card__price {
  font-size: 44px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -2px;
  margin-bottom: 4px;
}

.pricing-card__term {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
}

.pricing-card__features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card__features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
}

/* ─── CONTACT ─── */
.contact {
  padding: var(--section-py) 0;
  background: var(--bg-soft);
}

.contact__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact__detail-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.contact__detail a,
.contact__detail span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}

.contact__detail a:hover { color: var(--text-secondary); }

/* Contact form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: var(--text-tertiary);
}

.contact__form select {
  appearance: none;
  color: var(--text-tertiary);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23999' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact__form select:valid {
  color: var(--text);
}

.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  border-color: var(--text);
}

.contact__form textarea {
  resize: vertical;
  min-height: 100px;
}

/* ─── ABOUT ─── */
.about {
  padding: var(--section-py) 0;
}

.about__split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.about__photo-placeholder {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3/4;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  color: var(--text-tertiary);
  overflow: hidden;
  margin: 0 auto;
}

.about__photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__bio {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about__tags span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--bg-soft);
}

@media (max-width: 960px) {
  .about__split {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about__tags { justify-content: center; }
}

/* ─── FOOTER ─── */
.footer {
  border-top: 1px solid var(--border-light);
  padding: 64px 0 0;
  background: var(--bg);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
}

.footer__tagline {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 12px;
  max-width: 300px;
  line-height: 1.7;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

.footer__bottom {
  border-top: 1px solid var(--border-light);
  padding: 24px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ─── ANIMATIONS ─── */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero__container {
    flex-direction: column;
    gap: 48px;
    text-align: center;
  }

  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }

  .hero__mockup-widget {
    right: 0;
    bottom: -10px;
  }

  .feature__split {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .feature__text { max-width: 100%; }
  .feature__list { align-items: center; }

  .contact__split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 960px) {
  .services__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .how__steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .how__step-line { display: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --section-py: 80px; }

  .nav__links,
  .nav__actions { display: none; }
  .nav__hamburger { display: flex; }

  .hero { padding: 120px 0 60px; }
  .hero__title { font-size: clamp(30px, 8vw, 42px); }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .hero__cta .btn {
    width: 100%;
    max-width: 300px;
    white-space: normal;
    text-align: center;
  }

  .hero__visual { display: none; }

  .section-title { font-size: clamp(28px, 6vw, 38px); }

  .how__steps {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .logobar__tags { gap: 6px; }
  .logobar__tags span { font-size: 12px; padding: 6px 14px; }
  .service-card { padding: 28px 24px; }
  .pricing-card { padding: 28px 24px; }
}

/* ─── MOBILE NAV OPEN ─── */
.nav--open .nav__links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 5;
}

.nav--open .nav__links a {
  font-size: 24px;
  color: var(--text);
  font-weight: 500;
}

.nav--open .nav__hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav--open .nav__hamburger span:nth-child(2) {
  opacity: 0;
}
.nav--open .nav__hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
