@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800;900&display=swap");

:root {
  --black: #f3f4f6;
  --night: #e9ecef;
  --panel: #ffffff;
  --panel-soft: #f8fafc;
  --surface-hover: #eef2f6;
  --line: #d9dee5;
  --line-strong: #b8c0cc;
  --muted: #697386;
  --soft: #344054;
  --white: #111827;
  --button: #ffffff;
  --button-hover: #eef2f6;
  --whatsapp: #22c55e;
  --whatsapp-hover: #16a34a;
  --call: #2563eb;
  --call-hover: #1d4ed8;
  --on-color: #ffffff;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.14);
  --radius: 6px;
  --quick-bar-height: 58px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--quick-bar-height) + 88px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: "Sora", "Inter", "Plus Jakarta Sans", "Roboto Mono", sans-serif;
  line-height: 1.5;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
  min-width: 0;
}

.quick-action-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-height: var(--quick-bar-height);
  padding: 8px clamp(14px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.quick-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 900;
  white-space: nowrap;
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.quick-whatsapp {
  border-color: var(--whatsapp);
  background: var(--whatsapp);
  color: var(--on-color);
}

.quick-call {
  border-color: var(--call);
  background: var(--call);
  color: var(--on-color);
}

.quick-action:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.quick-whatsapp:hover {
  background: var(--whatsapp-hover);
}

.quick-call:hover {
  background: var(--call-hover);
}

.site-header {
  position: fixed;
  inset: var(--quick-bar-height) 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.62));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-inline {
  padding: 6px 10px 6px 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.1);
}

.brand-emblem {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.96), rgba(22, 163, 74, 0.96)),
    #16a34a;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.brand-text {
  display: grid;
  gap: 0;
  min-width: 0;
}

.brand-text strong {
  color: var(--white);
  font-size: clamp(1.02rem, 2.2vw, 1.2rem);
  font-weight: 900;
  line-height: 1.05;
  white-space: nowrap;
}

.brand-text small {
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: clamp(174px, 20vw, 246px);
  height: auto;
  max-height: 74px;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.1);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel-soft);
  color: var(--white);
  font-weight: 900;
  transition: background 260ms ease, color 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.brand:hover .brand-mark {
  background: var(--surface-hover);
  color: var(--white);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand small {
  color: var(--soft);
  font-size: 0.8rem;
  margin-top: 1px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a {
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--soft);
  transition: background 260ms ease, color 260ms ease, border-color 260ms ease;
}

.site-nav a:hover {
  border-color: var(--line-strong);
  background: var(--surface-hover);
  color: var(--white);
}

.header-contact,
.header-call {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--whatsapp);
  border-radius: var(--radius);
  background: var(--whatsapp);
  color: var(--on-color);
  font-weight: 900;
  white-space: nowrap;
  transition: background 260ms ease, color 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.header-call {
  border-color: var(--call);
  background: var(--call);
  color: var(--on-color);
}

.header-contact:hover,
.header-call:hover {
  background: var(--whatsapp-hover);
  color: var(--on-color);
  transform: translateY(-1px);
}

.header-call:hover {
  border-color: var(--call-hover);
  background: var(--call-hover);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/oto-yedek-parca-hero.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  filter: grayscale(1) contrast(0.9) brightness(1.04);
  transform: scale(1.01);
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(243, 244, 246, 0.88) 0%, rgba(243, 244, 246, 0.76) 38%, rgba(243, 244, 246, 0.46) 75%, rgba(243, 244, 246, 0.24) 100%),
    linear-gradient(0deg, rgba(243, 244, 246, 0.86) 0%, rgba(243, 244, 246, 0.22) 44%, rgba(243, 244, 246, 0.64) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 470px);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  width: min(1180px, calc(100% - 40px));
  min-height: 92vh;
  margin: 0 auto;
  padding: 166px 0 52px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 10ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 8vw, 6.4rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
}

.lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--soft);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 800;
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease;
}

.trust-row span:hover {
  border-color: var(--line-strong);
  background: var(--surface-hover);
  color: var(--white);
}

.request-panel {
  width: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--white);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.panel-head p {
  margin: 0;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 900;
}

.panel-head span {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel-soft);
  color: var(--soft);
  font-size: 0.75rem;
  font-weight: 900;
}

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

label {
  display: grid;
  gap: 7px;
}

label.wide {
  grid-column: 1 / -1;
}

label span {
  color: var(--soft);
  font-size: 0.84rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

input {
  min-height: 46px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  min-height: 88px;
  padding: 12px 13px;
}

input:focus,
textarea:focus {
  border-color: var(--line-strong);
  background: var(--panel);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: var(--muted);
}

label small {
  color: var(--muted);
  font-size: 0.76rem;
}

.form-actions {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

button {
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.secondary-button {
  color: var(--soft);
  background: var(--black);
  border-color: var(--line-strong);
}

.secondary-button:hover {
  border-color: var(--line-strong);
  background: var(--surface-hover);
  color: var(--white);
  transform: translateY(-1px);
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
  border-color: var(--whatsapp);
  color: var(--on-color);
  background: var(--whatsapp);
}

.call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
  min-height: 48px;
  border: 1px solid var(--call);
  border-radius: var(--radius);
  color: var(--on-color);
  background: var(--call);
  font-weight: 900;
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.whatsapp-button:hover {
  border-color: var(--whatsapp-hover);
  background: var(--whatsapp-hover);
  color: var(--on-color);
  transform: translateY(-1px);
}

.call-button:hover {
  border-color: var(--call-hover);
  background: var(--call-hover);
  color: var(--on-color);
  transform: translateY(-1px);
}

.button-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.button-mark svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.form-status.is-error,
.form-status.is-success {
  color: var(--white);
}

.section-band,
.process {
  padding: clamp(58px, 8vw, 96px) 20px;
}

.section-band {
  background: var(--black);
}

.process {
  background: var(--night);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-title {
  display: grid;
  gap: 8px;
  max-width: 720px;
  margin-bottom: 28px;
}

.section-title h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

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

.service-grid article {
  min-height: 184px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--night);
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.service-grid article:hover {
  border-color: var(--line-strong);
  background: var(--surface-hover);
  color: var(--white);
  transform: translateY(-2px);
}

.service-grid article::before {
  display: block;
  width: 40px;
  height: 4px;
  margin-bottom: 18px;
  background: var(--soft);
  border-radius: var(--radius);
  content: "";
}

.service-grid h3,
.steps strong {
  margin: 0;
  color: inherit;
  font-size: 1.05rem;
  font-weight: 900;
}

.service-grid p {
  margin: 12px 0 0;
  color: var(--soft);
}

.service-grid article:hover p {
  color: var(--soft);
}

.process-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  counter-increment: step;
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.steps li:hover {
  border-color: var(--line-strong);
  background: var(--surface-hover);
  color: var(--white);
  transform: translateY(-2px);
}

.steps li::before {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: var(--panel-soft);
  color: var(--white);
  font-weight: 900;
  content: counter(step, decimal-leading-zero);
}

.steps li:hover::before {
  background: var(--button-hover);
  color: var(--black);
}

.steps span {
  display: block;
  margin-top: 4px;
  color: var(--soft);
}

.steps li:hover span {
  color: var(--soft);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--panel);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1.25fr;
  gap: clamp(26px, 5vw, 62px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0 62px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h3 {
  width: 100%;
  margin: 0 0 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-column a:hover {
  color: var(--call);
  transform: translateX(2px);
}

.footer-column .footer-whatsapp-link {
  color: var(--whatsapp-hover);
}

.footer-column .footer-whatsapp-link:hover {
  color: var(--whatsapp);
}

.footer-column .footer-call-link {
  color: var(--call);
}

.footer-column .footer-call-link:hover {
  color: var(--call-hover);
}

.footer-note {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.policy-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.policy-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-soft);
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 850;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-bottom a {
  color: var(--call);
  font-weight: 900;
}

.policy-page {
  min-height: 100vh;
  padding: calc(var(--quick-bar-height) + 128px) 20px 72px;
  background: var(--black);
}

.policy-wrap {
  width: min(980px, 100%);
  margin: 0 auto;
}

.policy-hero,
.policy-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.policy-hero {
  margin-bottom: 18px;
  padding: clamp(26px, 5vw, 44px);
}

.policy-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.04;
}

.policy-hero p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.policy-card {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 38px);
}

.policy-card section {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.policy-card section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.policy-card h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}

.policy-card p,
.policy-card li {
  color: var(--soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

.policy-card p {
  margin: 0;
}

.policy-card ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.policy-card a {
  color: var(--call);
  font-weight: 800;
}

.policy-card strong {
  color: var(--white);
}

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.policy-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 900;
}

.policy-actions a:first-child {
  background: var(--whatsapp);
  color: var(--on-color);
}

.policy-actions a:last-child {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--white);
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    justify-content: center;
    padding: 14px clamp(14px, 4vw, 24px);
  }

  .site-nav {
    display: none;
  }

  .header-contact,
  .header-call {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 160px;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .request-panel {
    max-width: 640px;
  }

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

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

@media (max-width: 680px) {
  :root {
    --quick-bar-height: 54px;
  }

  html {
    scroll-padding-top: calc(var(--quick-bar-height) + 72px);
  }

  .quick-action-bar {
    gap: 8px;
    padding: 7px 10px;
  }

  .quick-action {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.9rem;
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-inline {
    max-width: min(58vw, 220px);
  }

  .brand-emblem {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .brand-logo {
    width: min(52vw, 210px);
    max-height: 62px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background-position: 63% center;
  }

  .hero-media img {
    object-position: 63% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(243, 244, 246, 0.84) 0%, rgba(243, 244, 246, 0.72) 42%, rgba(243, 244, 246, 0.9) 100%),
      linear-gradient(90deg, rgba(243, 244, 246, 0.72), rgba(243, 244, 246, 0.34));
  }

  .hero-inner {
    width: min(100% - 28px, 520px);
    min-height: auto;
    padding: 150px 0 34px;
    gap: 26px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 15vw, 4.1rem);
  }

  .lead {
    margin-top: 16px;
  }

  .request-panel {
    padding: 18px;
    width: 100%;
    max-width: 100%;
  }

  .field-grid,
  .form-actions,
  .service-grid,
  .process-inner {
    grid-template-columns: 1fr;
  }

  .form-actions {
    gap: 10px;
  }

  .secondary-button {
    order: 3;
  }

  .whatsapp-button {
    order: 1;
  }

  .call-button {
    order: 2;
  }

  .section-band,
  .process {
    padding: 52px 14px;
  }

  .policy-page {
    padding: calc(var(--quick-bar-height) + 104px) 14px 48px;
  }

  .policy-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-grid article {
    min-height: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 520px);
    padding: 34px 0 42px;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    width: min(100% - 28px, 520px);
  }
}

@media (max-width: 390px) {
  .quick-action-bar {
    gap: 6px;
    padding-inline: 8px;
  }

  .quick-action {
    padding: 0 8px;
    font-size: 0.84rem;
  }

  .brand small {
    display: none;
  }

  .brand-inline {
    max-width: 170px;
    padding: 5px;
    gap: 8px;
  }

  .brand-emblem {
    width: 36px;
    height: 36px;
  }

  .brand-text strong {
    font-size: 0.98rem;
  }

  .brand-text small {
    font-size: 0.68rem;
  }

  .brand-logo {
    width: 170px;
    max-height: 54px;
  }

  .header-contact,
  .header-call {
    font-size: 0.82rem;
  }

  .panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-button {
    font-size: 0.94rem;
  }
}
