@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --primary: #D4567A;
  --primary-dark: #B83B5E;
  --primary-light: #FDEEF2;
  --primary-glow: rgba(212,86,122,0.35);
  --secondary: #2D1B4E;
  --secondary-light: #4A2D6E;
  --accent: #E8A838;
  --accent-light: #FFF3DB;
  --bg: #FFFAF5;
  --bg-alt: #FFF0F3;
  --bg-dark: #1A0E2E;
  --text: #2D1B30;
  --text-light: #7A6B7D;
  --text-inv: #F5F0F7;
  --white: #FFFFFF;
  --gradient: linear-gradient(135deg, #D4567A 0%, #9B3A6A 50%, #6B2D5B 100%);
  --gradient-warm: linear-gradient(135deg, #FDEEF2 0%, #FFF5E6 100%);
  --gradient-hero: linear-gradient(-45deg, #D4567A, #9B3A6A, #4A2040, #B83B5E);
  --gradient-dark: linear-gradient(135deg, #1A0E2E 0%, #2D1B4E 100%);
  --shadow-xs: 0 1px 3px rgba(45,27,30,0.04);
  --shadow-sm: 0 2px 8px rgba(45,27,30,0.06);
  --shadow: 0 4px 24px rgba(45,27,30,0.08);
  --shadow-lg: 0 12px 48px rgba(45,27,30,0.12);
  --shadow-xl: 0 24px 64px rgba(45,27,30,0.16);
  --shadow-primary: 0 8px 32px rgba(212,86,122,0.3);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --radius-full: 50px;
  --font-h: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-b: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--primary-light); color: var(--primary-dark); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5 { font-family: var(--font-h); line-height: 1.2; color: var(--secondary); font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
p { margin-bottom: 1rem; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 2rem; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2.2rem; border-radius: var(--radius-full);
  font-family: var(--font-b); font-weight: 600; font-size: 1rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: all var(--transition); line-height: 1.2;
}
.btn-primary {
  background: var(--gradient); color: var(--white);
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
  transform: translateY(-3px); color: var(--white);
  box-shadow: 0 12px 40px rgba(212,86,122,0.45);
}
.btn-lg { padding: 1.2rem 2.8rem; font-size: 1.1rem; }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: var(--white); }
.btn-outline-dark {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }
.btn-accent {
  background: var(--accent); color: var(--secondary);
  box-shadow: 0 8px 32px rgba(232,168,56,0.3);
}
.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(232,168,56,0.45);
}

/* === BADGE === */
.badge {
  display: inline-block; padding: 0.5rem 1.2rem;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius-full);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-light { background: var(--primary-light); color: var(--primary-dark); border-color: transparent; }

/* === SECTION BASE === */
.section { padding: 6rem 0; position: relative; }
.section-alt { background: var(--white); }
.section-pink { background: var(--bg-alt); }
.section-dark { background: var(--gradient-dark); color: var(--text-inv); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .text-muted { color: rgba(255,255,255,0.7); }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-header .badge-light { margin-bottom: 1rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-light); font-size: 1.15rem; }

.text-muted { color: var(--text-light); }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }

/* === HERO === */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--gradient-hero); background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color: var(--white); overflow: hidden; padding: 8rem 0 6rem;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(232,168,56,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
}
.hero-shape {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-shape-1 {
  width: 500px; height: 500px; top: -10%; right: -5%;
  background: radial-gradient(circle, rgba(232,168,56,0.12) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}
.hero-shape-2 {
  width: 350px; height: 350px; bottom: -5%; left: -5%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite 2s;
}
.hero-shape-3 {
  width: 200px; height: 200px; top: 30%; right: 15%;
  background: radial-gradient(circle, rgba(212,86,122,0.2) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite 4s;
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 850px; margin: 0 auto;
}
.hero-content .badge { margin-bottom: 1.5rem; }
.hero-content h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero-content h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.3rem); opacity: 0.9;
  margin-bottom: 2.5rem; line-height: 1.8; max-width: 650px; margin-left: auto; margin-right: auto;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats {
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius);
  padding: 1.5rem 3rem; max-width: 600px; margin: 0 auto;
}
.stat { text-align: center; }
.stat-number { display: block; font-family: var(--font-h); font-size: 1.8rem; font-weight: 700; color: var(--accent); }
.stat-label { font-size: 0.85rem; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.05em; }

/* === WAVE DIVIDER === */
.wave-divider { position: relative; margin-top: -1px; line-height: 0; }
.wave-divider svg { display: block; width: 100%; height: 60px; }
.wave-divider svg path { fill: var(--white); }
.wave-divider-pink svg path { fill: var(--bg-alt); }
.wave-divider-cream svg path { fill: var(--bg); }
.wave-divider-dark svg path { fill: var(--bg-dark); }

/* === PROBLEM SECTION === */
.problems-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.problem-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.problem-card .icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.problem-card p { color: var(--text); font-size: 1rem; margin: 0; line-height: 1.6; }

/* === METHOD SECTION === */
.method-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.5rem;
}
.method-card {
  text-align: center; padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius);
  transition: all var(--transition);
}
.method-card:hover {
  background: rgba(255,255,255,0.15); transform: translateY(-4px);
  border-color: rgba(255,255,255,0.25);
}
.method-letter {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent); color: var(--secondary);
  font-family: var(--font-h); font-size: 1.5rem; font-weight: 700;
  margin-bottom: 1rem;
}
.method-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.5rem; }
.method-card p { font-size: 0.9rem; opacity: 0.8; margin: 0; }

/* === BENEFITS === */
.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.benefit-card {
  background: var(--white); border-radius: var(--radius); padding: 2.5rem;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  position: relative; overflow: hidden;
}
.benefit-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient); opacity: 0; transition: opacity var(--transition);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.benefit-card:hover::before { opacity: 1; }
.benefit-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: var(--radius-sm);
  background: var(--primary-light); font-size: 1.6rem;
  margin-bottom: 1.2rem;
}
.benefit-card h3 { margin-bottom: 0.6rem; color: var(--secondary); }
.benefit-card p { color: var(--text-light); margin: 0; font-size: 0.95rem; }

/* === TESTIMONIALS === */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 2.5rem;
  box-shadow: var(--shadow); position: relative; transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 1rem; left: 1.5rem;
  font-family: var(--font-h); font-size: 5rem; color: var(--primary-light);
  line-height: 1; pointer-events: none;
}
.testimonial-text {
  font-size: 1.05rem; font-style: italic; color: var(--text);
  margin-bottom: 1.5rem; position: relative; z-index: 1; line-height: 1.8;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1.1rem;
}
.testimonial-meta strong { display: block; color: var(--secondary); font-size: 0.95rem; }
.testimonial-meta span { color: var(--primary); font-size: 0.85rem; font-weight: 600; }
.stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1rem; }

/* === ABOUT === */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center;
}
.about-img-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img-placeholder {
  width: 100%; height: 100%;
  background: var(--gradient-warm);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--primary);
}
.about-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  border: 3px solid var(--primary); border-radius: var(--radius);
  transform: translate(12px, 12px); z-index: -1;
}
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p { color: var(--text-light); font-size: 1.05rem; margin-bottom: 1.2rem; }
.about-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.about-tag {
  padding: 0.4rem 1rem; background: var(--primary-light);
  color: var(--primary-dark); border-radius: var(--radius-full);
  font-size: 0.85rem; font-weight: 500;
}

/* === PROCESS === */
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 40px; left: 15%; right: 15%;
  height: 3px; background: var(--primary-light);
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--gradient); color: var(--white);
  font-family: var(--font-h); font-size: 2rem; font-weight: 700;
  margin-bottom: 1.5rem; box-shadow: var(--shadow-primary);
}
.process-step h3 { margin-bottom: 0.6rem; }
.process-step p { color: var(--text-light); font-size: 0.95rem; max-width: 280px; margin: 0 auto; }

/* === FAQ === */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(45,27,48,0.08); overflow: hidden;
}
.faq-item details { padding: 0; }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; cursor: pointer; font-size: 1.1rem; font-weight: 600;
  color: var(--secondary); list-style: none; transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.5rem; color: var(--primary); font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0; margin-left: 1rem;
}
.faq-item details[open] summary::after { content: '\2212'; transform: rotate(180deg); }
.faq-item details[open] summary { color: var(--primary); }
.faq-answer {
  padding: 0 0 1.5rem; color: var(--text-light); font-size: 1rem; line-height: 1.8;
}

/* === CTA SECTION === */
.cta-section {
  text-align: center; padding: 6rem 2rem;
  background: var(--gradient-hero); background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color: var(--white); position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,168,56,0.1) 0%, transparent 60%);
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* === HEADER / NAV === */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0; transition: all var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm); padding: 0.6rem 0;
}
.site-header.scrolled .nav-logo { color: var(--secondary); }
.site-header.scrolled .nav-link { color: var(--text); }
.site-header.scrolled .nav-link:hover { color: var(--primary); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: var(--font-h); font-size: 1.5rem; font-weight: 700;
  color: var(--white); text-decoration: none; letter-spacing: 0.02em;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-link {
  color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.95rem;
  text-decoration: none; transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--accent); transition: width var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  padding: 0.6rem 1.5rem; background: var(--accent); color: var(--secondary);
  border-radius: var(--radius-full); font-weight: 600; font-size: 0.9rem;
  transition: all var(--transition);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(232,168,56,0.4); color: var(--secondary); }

/* Mobile menu */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.menu-toggle span {
  display: block; width: 24px; height: 2px; background: var(--white);
  margin: 6px 0; transition: all var(--transition); border-radius: 2px;
}
.site-header.scrolled .menu-toggle span { background: var(--secondary); }

/* === FOOTER === */
.site-footer { background: var(--gradient-dark); color: var(--text-inv); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { font-size: 1.3rem; display: inline-block; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.95rem; max-width: 320px; }
.footer-col h4 { color: var(--white); font-family: var(--font-b); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--accent); }

/* === LEGAL PAGES === */
.legal-page { padding: 8rem 0 4rem; }
.legal-page h1 { margin-bottom: 2rem; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.legal-page h2 { font-size: 1.3rem; margin: 2.5rem 0 1rem; color: var(--primary-dark); }
.legal-page h3 { font-size: 1.1rem; margin: 2rem 0 0.8rem; }
.legal-page p, .legal-page li { color: var(--text-light); font-size: 0.95rem; line-height: 1.8; }
.legal-page ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-page li { margin-bottom: 0.4rem; }
.legal-page a { color: var(--primary); text-decoration: underline; }
.legal-update { font-size: 0.85rem; color: var(--text-light); margin-bottom: 2rem; font-style: italic; }

/* === ANIMATIONS === */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-25px) scale(1.05); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--primary-glow); }
  50% { box-shadow: 0 0 0 15px rgba(212,86,122,0); }
}
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

.pulse-btn { animation: pulse 2s ease-in-out infinite; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap { max-width: 400px; margin: 0 auto; }
  .process-steps { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .section-header { margin-bottom: 2.5rem; }
  .container { padding: 0 1.2rem; }

  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 1.5rem; gap: 1rem;
    box-shadow: var(--shadow-lg); border-radius: 0 0 var(--radius) var(--radius);
  }
  .nav-links.open .nav-link { color: var(--text); }
  .nav-links.open .nav-cta { text-align: center; display: block; }

  .hero { min-height: auto; padding: 7rem 0 4rem; }
  .hero-stats { gap: 1.5rem; padding: 1.2rem 1.5rem; flex-direction: row; }
  .hero-cta { flex-direction: column; align-items: center; }

  .problems-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .btn-lg { padding: 1rem 2rem; font-size: 1rem; }
}