:root {
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #181818;
  --card: #141414;
  --border: rgba(255,255,255,0.08);
  --accent: #E8FF47;
  --accent2: #4285F4;
  --text: #f0f0f0;
  --muted: #888;
  --radius: 16px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === SITE BACKGROUND === */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 10%, rgba(66,133,244,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 5% 90%, rgba(232,255,71,0.05) 0%, transparent 50%),
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(20,20,30,0.6) 0%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* Noise texture overlay — decorative only, pointer-events: none so it never blocks clicks */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
  opacity: 0.4;
}

/* Ensure all content is above bg layers.
   IMPORTANT: .nav is intentionally NOT here.
   Adding position:relative + z-index to .nav creates a stacking context
   that traps .nav-links.open inside it — causing the mobile menu to
   scroll with the page and lose its background on scroll. */
.hero, .clients-bar, section, footer {
  position: relative;
  z-index: 1;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === NAV === */
/* z-index: 100 puts nav above page content.
   We do NOT add transform/filter/will-change here — those would create
   a new stacking context and trap .nav-links.open inside the nav's bounds. */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s, border-color 0.3s;
}
.nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: var(--accent);
}
.nav-logo span { color: var(--text); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent);
  color: #0a0a0a !important;
  font-weight: 700 !important;
  padding: 10px 22px;
  border-radius: 100px;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; }

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px;
}
.lang-btn {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  color: var(--muted);
  transition: all 0.2s;
  cursor: pointer;
  letter-spacing: 0.04em;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active { background: var(--accent); color: #0a0a0a; }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 20%, rgba(66,133,244,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(232,255,71,0.06) 0%, transparent 50%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,255,71,0.1);
  border: 1px solid rgba(232,255,71,0.25);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

h1.hero-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
h1.hero-title em { color: var(--accent); font-style: normal; }

.hero-desc {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 500px;
}
.hero-free {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 36px;
}
.hero-free p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-free ul { display: flex; flex-direction: column; gap: 8px; }
.hero-free ul li {
  font-size: 15px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-free ul li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(232,255,71,0.15);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  text-align: center;
  line-height: 20px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* === BUTTONS === */
.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 100px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }

/* === STAT CARDS === */
.hero-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.stat-card:hover { border-color: rgba(232,255,71,0.25); }
.stat-card.accent-card { background: var(--accent); border-color: var(--accent); }
.stat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--accent);
}
.accent-card .stat-num { color: #0a0a0a; }
.stat-label { font-size: 13px; color: var(--muted); line-height: 1.4; }
.accent-card .stat-label { color: rgba(10,10,10,0.65); }
.stat-badge {
  display: inline-block;
  background: rgba(66,133,244,0.15);
  color: #4285F4;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.accent-card .stat-badge { background: rgba(10,10,10,0.15); color: #0a0a0a; }

/* === CLIENTS BAR === */
.clients-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.clients-bar-inner { display: flex; align-items: center; gap: 48px; overflow: hidden; }
.clients-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  font-weight: 600;
}
.clients-logos { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.client-logo-text {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: color 0.2s;
}
.client-logo-text:hover { color: rgba(255,255,255,0.5); }

/* === SECTIONS === */
section { padding: 100px 0; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
h2.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
h2.section-title em { color: var(--accent); font-style: normal; }
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 56px;
}

/* === SERVICES === */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.service-card:hover { border-color: rgba(232,255,71,0.2); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 30px; margin-bottom: 18px; display: block; }
.service-price {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}
.service-price-old { font-size: 13px; color: var(--muted); text-decoration: line-through; margin-bottom: 14px; }
h3.service-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
.service-features { display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.service-features li { font-size: 13px; color: #ccc; display: flex; align-items: center; gap: 8px; }
.service-features li::before { content: '→'; color: var(--accent); font-size: 12px; flex-shrink: 0; }
.service-btn {
  width: 100%;
  background: rgba(232,255,71,0.08);
  color: var(--accent);
  border: 1px solid rgba(232,255,71,0.2);
  border-radius: 100px;
  padding: 11px 20px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  display: block;
}
.service-btn:hover { background: rgba(232,255,71,0.15); }

/* === TARGETING === */
.targeting-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.target-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.target-card:hover { border-color: rgba(66,133,244,0.3); }
.target-emoji { font-size: 28px; margin-bottom: 14px; display: block; }
.target-card h4 { font-family: 'Unbounded', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.target-card p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* === CASES === */
.cases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.case-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}
.case-card:hover { border-color: rgba(232,255,71,0.2); }
.case-category { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
h3.case-title { font-family: 'Unbounded', sans-serif; font-size: 18px; font-weight: 700; line-height: 1.3; margin-bottom: 24px; }
.case-metrics { display: flex; gap: 32px; margin-bottom: 24px; }
.case-metric .value { font-family: 'Unbounded', sans-serif; font-size: 32px; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.case-metric .label { font-size: 13px; color: var(--muted); }
.case-quote { font-size: 14px; color: #aaa; line-height: 1.65; border-left: 2px solid rgba(232,255,71,0.4); padding-left: 16px; margin-bottom: 20px; font-style: italic; }
.case-author { display: flex; align-items: center; gap: 12px; }
.case-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285F4, var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #0a0a0a;
  flex-shrink: 0;
}
.case-author-name { font-size: 14px; font-weight: 600; }
.case-author-role { font-size: 12px; color: var(--muted); }

/* === ABOUT === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-features { display: flex; flex-direction: column; gap: 24px; }
.about-feature { display: flex; gap: 16px; align-items: flex-start; }
.about-feature-icon {
  width: 44px; height: 44px;
  background: rgba(232,255,71,0.08);
  border: 1px solid rgba(232,255,71,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.about-feature-text h4 { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.about-feature-text p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* === ADDITIONAL === */
.additional-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* === INFO BOX === */
.info-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.info-box h3 { font-family: 'Unbounded', sans-serif; font-size: 24px; font-weight: 800; margin-bottom: 16px; line-height: 1.25; }
.info-box h3 strong { color: var(--accent); }
.info-box p { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* === CONTACT === */
.contact-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-links { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-link {
  display: flex; align-items: center; gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: border-color 0.2s;
}
.contact-link:hover { border-color: rgba(232,255,71,0.3); }
.contact-link-icon {
  width: 40px; height: 40px;
  background: rgba(232,255,71,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-link-label { font-size: 12px; color: var(--muted); margin-bottom: 2px; }
.contact-link-value { font-size: 15px; font-weight: 600; }

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.contact-form h3 { font-family: 'Unbounded', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.contact-form p { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; color: var(--muted); font-weight: 500; margin-bottom: 6px; }
.form-group input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder { color: #555; }
.form-group input:focus { border-color: rgba(232,255,71,0.4); }
.form-submit {
  width: 100%;
  background: var(--accent);
  color: #0a0a0a;
  border: none;
  border-radius: 100px;
  padding: 15px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity 0.2s;
}
.form-submit:hover { opacity: 0.85; }
.form-success {
  display: none;
  background: rgba(232,255,71,0.1);
  border: 1px solid rgba(232,255,71,0.3);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  margin-top: 12px;
}
.form-error {
  display: none;
  background: rgba(255,80,80,0.1);
  border: 1px solid rgba(255,80,80,0.3);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
  color: #ff6060;
  font-weight: 600;
  font-size: 14px;
  margin-top: 12px;
}

/* === MAP === */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
  border: 1px solid var(--border);
  margin-top: 24px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* === FOOTER === */
footer { padding: 48px 0 32px; border-top: 1px solid var(--border); }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.footer-logo { font-family: 'Unbounded', sans-serif; font-size: 18px; font-weight: 700; color: var(--accent); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-google-badge img { height: 52px; width: auto; opacity: 0.8; transition: opacity 0.2s; }
.footer-google-badge img:hover { opacity: 1; }

/* === MODAL === */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  max-width: 480px;
  width: 100%;
  position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.06);
  border: none; border-radius: 50%;
  color: var(--text); font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.12); }
.modal-box h3 { font-family: 'Unbounded', sans-serif; font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.modal-box p { font-size: 14px; color: var(--muted); margin-bottom: 28px; }

/* === SCROLL ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav-links { display: none; }

  /* FIX: mobile menu — solid background, high z-index, no backdrop-filter
     (backdrop-filter creates a stacking context on some browsers, causing scroll bugs) */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #0d0d0d;
    z-index: 9998;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 20px;
  }
  .nav-links.open a { font-size: 18px; color: var(--text); }

  .burger { display: flex; z-index: 210; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .targeting-grid { grid-template-columns: 1fr 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .additional-grid { grid-template-columns: 1fr 1fr; }
  .info-box { grid-template-columns: 1fr; gap: 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 600px) {
  .targeting-grid { grid-template-columns: 1fr; }
  .additional-grid { grid-template-columns: 1fr; }
  .case-metrics { gap: 20px; }
  .case-metric .value { font-size: 24px; }
}