/* ============================================================
   Kegelō — Global Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Bricolage+Grotesque:wght@400;600;700;800&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --bg:            #0a0b0f;
  --bg-2:          #111219;
  --bg-card:       #14161f;
  --border:        rgba(255,255,255,0.08);
  --border-glow:   rgba(162,255,160,0.3);

  --primary:       #a2ff9e;      /* green-lime */
  --primary-dim:   rgba(162,255,160,0.12);
  --primary-dark:  #2d6b29;

  --text:          #f0f0f5;
  --text-muted:    #8a8aa0;
  --text-subtle:   #5a5a72;

  --radius-sm:     8px;
  --radius:        16px;
  --radius-lg:     24px;
  --radius-xl:     32px;

  --shadow-card:   0 4px 40px rgba(0,0,0,0.5);
  --shadow-glow:   0 0 60px rgba(162,255,160,0.15);

  --nav-h:         72px;
  --font-body:     'Inter', sans-serif;
  --font-display:  'Bricolage Grotesque', sans-serif;

  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { border: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 800;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}
.text-muted { color: var(--text-muted); }
.gradient-text {
  background: linear-gradient(135deg, #a2ff9e 0%, #4dffc8 60%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .label { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #080c08;
}
.btn-primary:hover {
  background: #c4ffb4;
  box-shadow: 0 0 32px rgba(162,255,160,0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-store:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--border-glow);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.btn-store .store-icon { font-size: 1.8rem; }
.btn-store .store-text { text-align: left; }
.btn-store .store-text small { display: block; font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.btn-store .store-text strong { display: block; font-size: 1rem; font-weight: 700; }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(10,11,15, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 24px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: transparent;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--primary); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(162,255,160,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(0,212,255,0.05) 0%, transparent 70%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid var(--border-glow);
  background: var(--primary-dim);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-badge::before { content: '●'; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-content h1 { margin-bottom: 24px; }
.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--primary);
}
.hero-stat .desc { font-size: 0.8rem; color: var(--text-muted); }
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-mockup {
  position: relative;
  width: 260px;
  margin: 0 auto;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.phone-mockup-shell {
  background: var(--bg-card);
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 40px;
  padding: 12px;
  position: relative;
}
.phone-screen {
  background: linear-gradient(160deg, #0d1f0d 0%, #0a0b0f 60%);
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 9/19;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
}
.phone-app-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, #4dffc8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 4px;
}
.phone-streak {
  text-align: center;
}
.phone-streak .streak-num { font-size: 3rem; font-weight: 900; color: var(--primary); font-family: var(--font-display); }
.phone-streak .streak-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.phone-timer-ring {
  width: 100px;
  height: 100px;
  position: relative;
  margin: 4px auto;
}
.phone-timer-ring svg {
  transform: rotate(-90deg);
}
.phone-timer-ring .ring-bg { fill: none; stroke: rgba(255,255,255,0.06); stroke-width: 6; }
.phone-timer-ring .ring-progress {
  fill: none;
  stroke: var(--primary);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 85;
  animation: ring-anim 4s ease-in-out infinite alternate;
}
@keyframes ring-anim {
  from { stroke-dashoffset: 85; }
  to { stroke-dashoffset: 250; }
}
.phone-timer-ring .ring-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.phone-timer-ring .ring-text .time { font-size: 1.4rem; font-weight: 800; color: var(--text); }
.phone-timer-ring .ring-text .phase { font-size: 0.6rem; color: var(--primary); text-transform: uppercase; letter-spacing: 0.08em; }
.phone-pill {
  padding: 6px 16px;
  background: var(--primary-dim);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid var(--border-glow);
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}
.glow-orb-1 {
  width: 300px; height: 300px;
  background: rgba(162,255,160,0.15);
  top: -60px; right: -60px;
}
.glow-orb-2 {
  width: 200px; height: 200px;
  background: rgba(0,212,255,0.1);
  bottom: -40px; left: -40px;
}

/* ── Trust Bar ───────────────────────────────────────────── */
.trust-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-bar p { color: var(--text-subtle); font-size: 0.85rem; font-weight: 500; white-space: nowrap; }
.trust-logos {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}
.trust-logo-item {
  color: var(--text-subtle);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  opacity: 0.5;
  transition: opacity var(--transition);
}
.trust-logo-item:hover { opacity: 0.9; }

/* ── Features Grid ───────────────────────────────────────── */
.features-section { background: transparent; }
.features-grid-large {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 0;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at top left, var(--primary-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.feature-card-span {
  grid-column: 1 / -1;
}
.feature-card-span.big-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px;
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--primary-dim);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.feature-card h3 { margin-bottom: 12px; }
.feature-card p { color: var(--text-muted); line-height: 1.65; font-size: 0.95rem; }
.feature-card ul { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.feature-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.feature-card ul li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-visual {
  background: linear-gradient(135deg, rgba(162,255,160,0.06) 0%, rgba(0,0,0,0) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.progress-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.progress-bar {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #4dffc8);
  border-radius: 3px;
  transform-origin: left;
  animation: fill-anim 2.5s ease-out forwards;
}
@keyframes fill-anim { from { transform: scaleX(0); } }

/* ── Why Choose Us ───────────────────────────────────────── */
.why-section { background: var(--bg-2); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.why-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.why-card .why-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.why-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ── Testimonials ────────────────────────────────────────── */
.reviews-section { background: transparent; }
.reviews-track-wrapper { overflow: hidden; position: relative; }
.reviews-track-wrapper::before,
.reviews-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.reviews-track-wrapper::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.reviews-track-wrapper::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.reviews-track {
  display: flex;
  gap: 20px;
  animation: scroll-track 40s linear infinite;
  width: max-content;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes scroll-track {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  width: 300px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition);
}
.review-card:hover { border-color: var(--border-glow); }
.review-stars { color: #fbbf24; font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
  color: #080c08;
  background: linear-gradient(135deg, var(--primary), #4dffc8);
  flex-shrink: 0;
}
.review-name { font-size: 0.88rem; font-weight: 600; }
.review-country { font-size: 0.75rem; color: var(--text-subtle); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section { background: var(--bg-2); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border-glow); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-chevron {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--primary-dim);
  color: var(--primary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 28px 22px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ── CTA Strip ───────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, rgba(162,255,160,0.06) 0%, rgba(77,255,200,0.04) 50%, transparent 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(162,255,160,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { margin-bottom: 20px; }
.cta-section p { color: var(--text-muted); font-size: 1.1rem; max-width: 500px; margin: 0 auto 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { font-size: 1.3rem; display: block; margin-bottom: 14px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 260px; line-height: 1.65; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 16px; color: var(--text); text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: var(--text-muted); font-size: 0.9rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { color: var(--text-subtle); font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-subtle); font-size: 0.82rem; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--primary); }

/* ── Page Header (interior pages) ────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  text-align: center;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(162,255,160,0.07) 0%, transparent 70%);
  border-bottom: 1px solid var(--border);
}
.page-hero .label { margin-bottom: 12px; }
.page-hero h1 { margin-bottom: 20px; }
.page-hero p { max-width: 520px; margin: 0 auto; color: var(--text-muted); font-size: 1.1rem; }

/* ── Divider ─────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── Scroll Animations ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .phone-mockup { width: 200px; }
  .features-grid-large { grid-template-columns: 1fr; }
  .feature-card-span.big-card { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  h1 { font-size: 2.1rem; }
  .hero-ctas { flex-direction: column; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}
