/* ====================================
   LUMINETICA - DESIGN 2024-2025
   Basato sul logo reale del brand
   ==================================== */

:root {
  /* Brand Colors - Dal Logo Luminetica */
  --verde-primary: #1f5b56;      /* Verde scuro logo */
  --verde-dark: #194540;         /* Verde più scuro */
  --verde-light: #2a7d76;        /* Verde più chiaro */
  --beige-primary: #ebe3c8;      /* Beige logo */
  --beige-light: #f5efe0;        /* Beige più chiaro */
  --beige-dark: #d9d1b8;         /* Beige più scuro */
  
  /* Backgrounds */
  --bg-primary: #FAFBFC;
  --bg-secondary: #F5F7FA;
  --bg-white: #FFFFFF;
  
  /* Accenti Moderni */
  --accent-mint: #00D9C0;
  --accent-coral: #FF6B6B;
  --accent-blue: #0066FF;
  
  /* Testo */
  --text-primary: #1a2332;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  
  /* Bordi e Ombre */
  --border-light: rgba(0,0,0,0.06);
  --border-medium: rgba(0,0,0,0.12);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --shadow-verde: 0 12px 32px rgba(31,91,86,0.2);
  
  /* Spacing & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

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

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ====================================
   ANIMATED GRADIENT BACKGROUND
   ==================================== */
.gradient-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--bg-primary);
  overflow: hidden;
}

.gradient-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(31,91,86,0.04), transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.gradient-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(235,227,200,0.06), transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 30px) scale(0.95); }
}

/* ====================================
   NAVIGATION - Stile Logo Luminetica
   ==================================== */
.site-nav {
  min-height: 80px;
  width: 100%;
  background: var(--verde-primary);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.site-nav.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  min-height: 70px;
}

.nav-inner {
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

/* Logo Style - Matching Real Logo */
.logo {
  height: 48px;
  width: 294px;
  font-family: 'Space Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--beige-primary);
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1;
}

.logo:hover {
  transform: translateY(-2px);
  color: var(--beige-light);
}

.logo-subtitle {
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: rgba(235,227,200,0.8);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--beige-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: all 0.2s ease;
  padding: 0.5rem 0;
  opacity: 0.9;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--beige-light);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--beige-light);
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA Button in Nav */
.nav-links .cta-small {
  padding: 0.65rem 1.4rem;
  background: var(--beige-primary);
  color: var(--verde-primary);
  border-radius: 999px;
  transition: all 0.2s ease;
  opacity: 1;
}

.nav-links .cta-small::after {
  display: none;
}

.nav-links .cta-small:hover {
  background: var(--beige-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Mobile Menu */
.menu-btn {
  display: none;
  background: rgba(235,227,200,0.1);
  border: 1px solid rgba(235,227,200,0.3);
  color: var(--beige-primary);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  font-size: 1rem;
}

.menu-btn:hover {
  background: rgba(235,227,200,0.15);
  border-color: var(--beige-primary);
}

.mobile-panel {
  display: none;
  padding: 1.5rem 0;
  background: var(--verde-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-panel a {
  display: block;
  padding: 0.9rem 0;
  color: var(--beige-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  opacity: 0.9;
}

.mobile-panel a:hover {
  opacity: 1;
  color: var(--beige-light);
  padding-left: 0.5rem;
}

.mobile-panel.is-open {
  display: block;
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
  padding: 8rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(31,91,86,0.06), transparent 60%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.1); opacity: 0.6; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, var(--verde-primary), var(--verde-light));
  color: var(--beige-primary);
  border: 1px solid rgba(235,227,200,0.2);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-verde);
  animation: fadeInUp 0.6s ease-out;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--verde-primary), var(--accent-mint));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-secondary);
  max-width: 820px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.1rem 2rem;
  background: var(--verde-primary);
  color: var(--beige-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-verde);
}

.cta-button:hover {
  background: var(--verde-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(31,91,86,0.3);
}

.cta-button-secondary {
  background: var(--bg-white);
  color: var(--verde-primary);
  border: 2px solid var(--verde-primary);
  box-shadow: var(--shadow-sm);
}

.cta-button-secondary:hover {
  background: var(--verde-primary);
  color: var(--beige-primary);
  box-shadow: var(--shadow-verde);
}

.hero-stats {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--verde-primary);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* ====================================
   SERVICES SECTION
   ==================================== */
.services {
  padding: 6rem 0;
  background: var(--bg-white);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-flex;
  padding: 0.5rem 1rem;
  background: rgba(31,91,86,0.08);
  color: var(--verde-primary);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(31,91,86,0.02), rgba(235,227,200,0.04));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--verde-primary);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--verde-primary), var(--accent-mint));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--verde-primary);
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s ease;
  margin-top: auto;
}

.service-link:hover {
  gap: 0.8rem;
}

.service-link::after {
  content: '→';
  font-size: 1.2rem;
}

/* ====================================
   TECH STACK
   ==================================== */
.tech-stack {
  padding: 6rem 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.tech-stack::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: 
    radial-gradient(circle at 30% 40%, rgba(31,91,86,0.02) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(235,227,200,0.03) 0%, transparent 50%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}

.tech-badge {
  padding: 0.9rem 1.6rem;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  font-family: 'Space Mono', monospace;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s ease;
  cursor: default;
  box-shadow: var(--shadow-sm);
}

.tech-badge:hover {
  transform: translateY(-4px);
  border-color: var(--verde-primary);
  color: var(--verde-primary);
  box-shadow: var(--shadow-md);
}

.tech-badge:nth-child(3n+1):hover {
  border-color: var(--accent-mint);
  color: var(--accent-mint);
}

.tech-badge:nth-child(3n+2):hover {
  border-color: var(--verde-light);
  color: var(--verde-light);
}

/* ====================================
   CTA SECTION
   ==================================== */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--verde-primary) 0%, var(--verde-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(235,227,200,0.1), transparent 60%);
  border-radius: 50%;
}

.cta-content {
  text-align: center;
  color: var(--beige-primary);
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-button-white {
  background: var(--beige-primary);
  color: var(--verde-primary);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.cta-button-white:hover {
  background: var(--beige-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

/* ====================================
   CONTACT SECTION
   ==================================== */
.contact {
  padding: 6rem 0;
  background: var(--bg-white);
}

.contact-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.field {
  display: flex;
  flex-direction: column;
}

.field label {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

.field input,
.field textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-light);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: all 0.2s ease;
}

.field textarea {
  resize: vertical;
  min-height: 180px;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--verde-primary);
  background: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(31,91,86,0.08);
}

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

.full {
  grid-column: 1 / -1;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.1rem 2rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--beige-primary);
  background: var(--verde-primary);
  transition: all 0.3s ease;
  margin-top: 1rem;
  box-shadow: var(--shadow-verde);
  font-family: inherit;
}

.submit-btn:hover {
  background: var(--verde-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(31,91,86,0.3);
}

.consent {
  margin-top: 1.5rem;
}

.checkbox {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  transform: scale(1.2);
  cursor: pointer;
  accent-color: var(--verde-primary);
}

.checkbox a {
  color: var(--verde-primary);
  text-decoration: none;
  font-weight: 600;
}

.checkbox a:hover {
  text-decoration: underline;
}

.form-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 1.5rem;
}

.form-note a {
  color: var(--verde-primary);
  text-decoration: none;
  font-weight: 600;
}

.form-note a:hover {
  text-decoration: underline;
}

.form-success,
.form-error {
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid;
  font-weight: 600;
}

.form-success {
  background: rgba(31,91,86,0.08);
  border-color: var(--verde-primary);
  color: var(--verde-primary);
}

.form-error {
  background: rgba(255,106,107,0.08);
  border-color: var(--accent-coral);
  color: #dc2626;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ====================================
   FOOTER
   ==================================== */
footer {
  padding: 4rem 0 2rem;
  background: var(--verde-primary);
  color: var(--beige-primary);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: 'Space Mono', monospace;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--beige-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-brand p {
  color: rgba(235,227,200,0.85);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-location {
  color: rgba(235,227,200,0.8);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.footer-section h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--beige-primary);
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(235,227,200,0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--beige-light);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(235,227,200,0.7);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(235,227,200,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--beige-light);
}

/* ====================================
   ANIMATIONS
   ==================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

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

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .logo {
    font-size: 1.2rem;
  }
  
  .logo-subtitle {
    font-size: 0.45rem;
  }
  
  .hero {
    padding: 6rem 0 4rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .services,
  .tech-stack,
  .contact,
  .cta-section {
    padding: 4rem 0;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .logo {
    font-size: 1rem;
  }
  
  .logo-subtitle {
    font-size: 0.4rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-button,
  .cta-button-secondary {
    width: 100%;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-badge {
    font-size: 0.85rem;
    padding: 0.7rem 1.2rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

/* ====================================
   ACCESSIBILITY
   ==================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--verde-primary);
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  :root {
    --border-light: rgba(0,0,0,0.3);
    --border-medium: rgba(0,0,0,0.5);
  }
}

@media print {
  .gradient-bg,
  .site-nav,
  .hero-badge,
  .cta-section,
  footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}
