/* ===================================
   AURO DESIGN SYSTEM - SOS EXPERT HYGIENE
   =================================== */

:root {
  /* === COLORS === */
  --color-primary: #1B3A2D;
  --color-primary-light: #2A503F;
  --color-accent: #A8E63D;
  --color-accent-dark: #8BC928;
  --color-white: #FFFFFF;
  --color-light-gray: #F4F4F4;
  --color-medium-gray: #7A7A7A;
  --color-dark-text: #1A1A1A;
  --color-star-yellow: #F5C518;
  --color-border: #E0E0E0;

  /* === TYPOGRAPHY === */
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* === SPACING === */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  --spacing-4xl: 80px;
  --spacing-5xl: 96px;

  /* === BORDER RADIUS === */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* === SHADOWS === */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);

  /* === TRANSITIONS === */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-medium-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-dark-text);
}

h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
}

h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
}

h3 {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
}

p {
  margin-bottom: var(--spacing-md);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* ==================== NAVBAR ==================== */
.auro-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #1B3A2D;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(168, 230, 61, 0.1);
  transition: all 0.3s ease;
}

.auro-navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.auro-navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.auro-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.auro-logo-img {
  height: 80px;
  width: auto;
}

.auro-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
}

.auro-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.auro-nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.25s ease;
}

.auro-nav-link:hover {
  color: #A8E63D;
}

.auro-nav-cta {
  background: #A8E63D;
  color: #1B3A2D !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700 !important;
  transition: all 0.25s ease;
}

.auro-nav-cta:hover {
  background: #8BC928;
  transform: translateY(-1px);
}

.auro-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .auro-nav-links {
    gap: 20px;
  }

  .auro-nav-link:not(.auro-nav-cta) {
    display: none;
  }
}

@media (max-width: 768px) {
  .auro-navbar-inner {
    padding: 0 16px;
    height: 64px;
  }

  .auro-logo-text {
    font-size: 18px;
  }

  .auro-logo-img {
    height: 60px;
  }

  .auro-mobile-toggle {
    display: block;
  }

  .auro-nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1B3A2D;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .auro-nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .auro-nav-link {
    width: 100%;
    text-align: center;
    padding: 12px;
    display: block !important;
  }
}

/* ==================== HERO ==================== */
.auro-hero {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1920&q=80');
  background-size: cover;
  background-position: center;
}

.auro-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 58, 45, 0.95) 0%, rgba(27, 58, 45, 0.85) 50%, rgba(27, 58, 45, 0.75) 100%);
}

.auro-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

.auro-hero-content {
  max-width: 800px;
  animation: fadeInLeft 0.8s ease both;
}

.auro-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(168, 230, 61, 0.15);
  border: 1px solid rgba(168, 230, 61, 0.3);
  border-radius: 999px;
  color: #A8E63D;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.auro-hero-badge i {
  animation: pulse 2s infinite;
}

.auro-hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.auro-hero-title .accent {
  color: #A8E63D;
}

.auro-hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 600px;
}

.auro-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.auro-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #A8E63D;
  color: #1B3A2D;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(168, 230, 61, 0.3);
}

.auro-hero-btn-primary:hover {
  background: #8BC928;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(168, 230, 61, 0.4);
}

.auro-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.auro-hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #A8E63D;
  color: #A8E63D;
}

.auro-hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1s ease 0.3s both;
  display: none;
}

/* Hero Form */
.auro-hero-form-wrapper {
  animation: fadeInRight 0.8s ease both;
}

.auro-hero-form-card {
  max-width: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.auro-hero-form-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1B3A2D;
  margin-bottom: 8px;
}

.auro-hero-form-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

.auro-hero-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auro-hero-form-submit {
  width: 100%;
  max-width: 100%;
  background: linear-gradient(135deg, #A8E63D 0%, #8BC43A 100%);
  color: #1B3A2D;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.auro-hero-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(168, 230, 61, 0.4);
}

/* Override form styles for white background */
.auro-hero-form .auro-form-label {
  color: #1B3A2D;
}

.auro-hero-form .auro-form-input,
.auro-hero-form .auro-form-select,
.auro-hero-form .auro-form-textarea {
  background: #F5F5F5;
  border: 1px solid #E0E0E0;
  color: #1B3A2D;
}

.auro-hero-form .auro-form-input::placeholder,
.auro-hero-form .auro-form-textarea::placeholder {
  color: #999;
}

.auro-hero-form .auro-form-input:focus,
.auro-hero-form .auro-form-select:focus,
.auro-hero-form .auro-form-textarea:focus {
  border-color: #A8E63D;
  background: #FFFFFF;
}

.auro-hero-form .auro-form-select option {
  background: #FFFFFF;
  color: #1B3A2D;
}

.auro-hero-stat {
  text-align: center;
}

.auro-hero-stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #A8E63D;
  line-height: 1;
  margin-bottom: 8px;
}

.auro-hero-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}


@media (max-width: 768px) {
  .auro-hero {
    padding-top: 84px;
    padding-bottom: 40px;
  }

  .auro-hero-inner {
    padding: 40px 16px;
    grid-template-columns: 1fr;
  }

  .auro-hero-form-wrapper {
    display: none;
  }

  .auro-hero-title {
    font-size: 24px;
  }

  .auro-hero-subtitle {
    font-size: 16px;
  }

  .auro-hero-buttons {
    flex-direction: column;
  }

  .auro-hero-btn-primary,
  .auro-hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .auro-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
  }
}

/* ==================== SERVICES ==================== */
.auro-services {
  padding: 100px 24px;
  background: #FFFFFF;
}

.auro-services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.auro-services-header {
  text-align: center;
  margin-bottom: 60px;
}

.auro-services-eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #A8E63D;
  margin-bottom: 12px;
  display: inline-block;
}

.auro-services-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 16px;
}

.auro-services-subtitle {
  font-size: 16px;
  color: #7A7A7A;
  max-width: 600px;
  margin: 0 auto;
}

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

.auro-service-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
  border: 1px solid #F4F4F4;
}

.auro-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.auro-service-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, #1B3A2D 0%, #2A503F 100%);
  position: relative;
}

.auro-service-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(168, 230, 61, 0.9);
  color: #1B3A2D;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
}

.auro-service-content {
  padding: 24px;
}

.auro-service-icon {
  width: 48px;
  height: 48px;
  background: rgba(168, 230, 61, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B3A2D;
  font-size: 20px;
  margin-bottom: 16px;
  margin-top: -48px;
  position: relative;
}

.auro-service-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.auro-service-description {
  font-size: 14px;
  color: #7A7A7A;
  line-height: 1.6;
  margin-bottom: 20px;
}

.auro-service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.auro-service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #7A7A7A;
  margin-bottom: 8px;
}

.auro-service-features li i {
  color: #A8E63D;
  font-size: 12px;
}

.auro-service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1B3A2D;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.25s ease;
}

.auro-service-link:hover {
  color: #A8E63D;
  gap: 12px;
}

.auro-services-urgent {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 24px;
  background: linear-gradient(135deg, #1B3A2D 0%, #2A503F 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.auro-services-urgent-content {
  flex: 1;
  min-width: 280px;
}

.auro-services-urgent-label {
  color: #A8E63D;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.auro-services-urgent-text {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
}

.auro-services-urgent-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #A8E63D;
  color: #1B3A2D;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.auro-services-urgent-btn:hover {
  background: #8BC928;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 230, 61, 0.3);
}

@media (max-width: 768px) {
  .auro-services {
    padding: 60px 16px;
  }

  .auro-services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .auro-services-urgent {
    flex-direction: column;
    text-align: center;
  }

  .auro-services-urgent-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==================== EXPERTISE ==================== */
.auro-expertise {
  padding: 100px 24px;
  background: #F4F4F4;
}

.auro-expertise-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.auro-expertise-content {
  animation: fadeInLeft 0.8s ease both;
}

.auro-expertise-eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #A8E63D;
  margin-bottom: 12px;
  display: inline-block;
}

.auro-expertise-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 24px;
  line-height: 1.2;
}

.auro-expertise-title .accent {
  color: #A8E63D;
}

.auro-expertise-description {
  font-size: 16px;
  color: #7A7A7A;
  line-height: 1.7;
  margin-bottom: 32px;
}

.auro-expertise-features {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.auro-expertise-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.auro-expertise-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #FFFFFF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B3A2D;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.auro-expertise-feature-content h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 4px;
}

.auro-expertise-feature-content p {
  font-size: 14px;
  color: #7A7A7A;
  line-height: 1.5;
  margin: 0;
}

.auro-expertise-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.auro-expertise-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #1B3A2D;
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.auro-expertise-btn-primary:hover {
  background: #2A503F;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 58, 45, 0.2);
}

.auro-expertise-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: #1B3A2D;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid #1B3A2D;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.auro-expertise-btn-secondary:hover {
  background: #1B3A2D;
  color: #FFFFFF;
}

.auro-expertise-image {
  position: relative;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.auro-expertise-img {
  width: 100%;
  border-radius: 16px;
}

.auro-expertise-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  padding: 20px 24px;
  background: #A8E63D;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(168, 230, 61, 0.3);
  max-width: 260px;
}

.auro-expertise-badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(27, 58, 45, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B3A2D;
  font-size: 16px;
  margin-bottom: 12px;
}

.auro-expertise-badge h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1B3A2D;
  margin-bottom: 4px;
}

.auro-expertise-badge p {
  font-size: 13px;
  color: #1B3A2D;
  line-height: 1.4;
  margin: 0;
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .auro-expertise-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .auro-expertise-image {
    order: -1;
  }

  .auro-expertise-badge {
    left: 20px;
    bottom: -20px;
  }
}

@media (max-width: 768px) {
  .auro-expertise {
    padding: 60px 16px;
  }

  .auro-expertise-badge {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: -30px;
    margin-left: 16px;
  }
}

/* ==================== INTERVENTION ==================== */
.auro-intervention {
  padding: 100px 24px;
  background: #FFFFFF;
}

.auro-intervention-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.auro-intervention-header {
  text-align: center;
  margin-bottom: 60px;
}

.auro-intervention-eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #A8E63D;
  margin-bottom: 12px;
  display: inline-block;
}

.auro-intervention-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 16px;
}

.auro-intervention-subtitle {
  font-size: 16px;
  color: #7A7A7A;
  max-width: 600px;
  margin: 0 auto;
}

.auro-intervention-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.auro-intervention-step {
  text-align: center;
  position: relative;
}

.auro-intervention-step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #1B3A2D 0%, #2A503F 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A8E63D;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}

.auro-intervention-step::after {
  content: '';
  position: absolute;
  top: 32px;
  left: 50%;
  width: calc(100% + 32px);
  height: 2px;
  background: linear-gradient(90deg, #1B3A2D 0%, #A8E63D 50%, #1B3A2D 100%);
  z-index: 1;
}

.auro-intervention-step:last-child::after {
  display: none;
}

.auro-intervention-step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.auro-intervention-step-description {
  font-size: 14px;
  color: #7A7A7A;
  line-height: 1.6;
}

.auro-intervention-cta {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px;
  background: linear-gradient(135deg, #1B3A2D 0%, #2A503F 100%);
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.auro-intervention-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23A8E63D' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.auro-intervention-cta-content {
  position: relative;
  z-index: 2;
}

.auro-intervention-cta-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.auro-intervention-cta-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.auro-intervention-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.auro-intervention-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #A8E63D;
  color: #1B3A2D;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.auro-intervention-cta-btn-primary:hover {
  background: #8BC928;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(168, 230, 61, 0.4);
}

.auro-intervention-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.auro-intervention-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #A8E63D;
  color: #A8E63D;
}

@media (max-width: 1024px) {
  .auro-intervention-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .auro-intervention-step:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .auro-intervention {
    padding: 60px 16px;
  }

  .auro-intervention-steps {
    grid-template-columns: 1fr;
  }

  .auro-intervention-step::after {
    display: none;
  }

  .auro-intervention-cta {
    padding: 32px 24px;
  }

  .auro-intervention-cta-title {
    font-size: 24px;
  }

  .auro-intervention-cta-buttons {
    flex-direction: column;
  }

  .auro-intervention-cta-btn-primary,
  .auro-intervention-cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ==================== ZONE ==================== */
.auro-zone {
  padding: 100px 24px;
  background: #1B3A2D;
  position: relative;
  overflow: hidden;
}

.auro-zone::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23A8E63D' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.auro-zone-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.auro-zone-eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #A8E63D;
  margin-bottom: 12px;
  display: inline-block;
}

.auro-zone-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.auro-zone-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.auro-zone-departements {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.auro-zone-departements h3 {
  color: white;
}

.auro-zone-dept {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.auro-zone-dept:hover {
  background: rgba(168, 230, 61, 0.1);
  border-color: #A8E63D;
  transform: translateY(-2px);
}

.auro-zone-dept-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(168, 230, 61, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A8E63D;
  font-size: 16px;
}

.auro-zone-dept-content {
  text-align: left;
}

.auro-zone-dept-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.auro-zone-dept-code {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.auro-zone-villes {
  margin-bottom: 48px;
}

.auro-zone-villes-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.auro-zone-villes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.auro-zone-ville {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(168, 230, 61, 0.3);
  border-radius: 999px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
  text-decoration: none;
}

.auro-zone-ville:hover {
  background: rgba(168, 230, 61, 0.15);
  border-color: #A8E63D;
  border-style: solid;
}

.auro-zone-ville i {
  color: #A8E63D;
  font-size: 12px;
}

.auro-zone-cta {
  padding: 32px;
  background: rgba(168, 230, 61, 0.1);
  border: 2px solid rgba(168, 230, 61, 0.2);
  border-radius: 16px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.auro-zone-cta-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
}

.auro-zone-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #A8E63D;
  color: #1B3A2D;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.auro-zone-cta-btn:hover {
  background: #8BC928;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(168, 230, 61, 0.4);
}

@media (max-width: 768px) {
  .auro-zone {
    padding: 60px 16px;
  }

  .auro-zone-departements {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .auro-zone-villes-list {
    flex-direction: column;
    align-items: center;
  }

  .auro-zone-ville {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* ==================== AVIS ==================== */
.auro-avis {
  padding: 100px 24px;
  background: #F4F4F4;
}

.auro-avis-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.auro-avis-header {
  text-align: center;
  margin-bottom: 60px;
}

.auro-avis-eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #A8E63D;
  margin-bottom: 12px;
  display: inline-block;
}

.auro-avis-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 16px;
}

.auro-avis-subtitle {
  font-size: 16px;
  color: #7A7A7A;
  max-width: 600px;
  margin: 0 auto;
}

.auro-avis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.auro-avis-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
}

.auro-avis-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.auro-avis-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.auro-avis-card-avatar {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: linear-gradient(135deg, #1B3A2D 0%, #2A503F 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A8E63D;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.auro-avis-card-author {
  flex: 1;
}

.auro-avis-card-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 4px;
}

.auro-avis-card-location {
  font-size: 13px;
  color: #7A7A7A;
}

.auro-avis-card-stars {
  display: flex;
  gap: 4px;
  color: #F5C518;
  font-size: 16px;
  margin-bottom: 16px;
}

.auro-avis-card-text {
  font-size: 15px;
  color: #7A7A7A;
  line-height: 1.7;
  font-style: italic;
}

.auro-avis-card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #F4F4F4;
}

.auro-avis-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(168, 230, 61, 0.15);
  color: #1B3A2D;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
}

.auro-avis-card-badge i {
  color: #A8E63D;
}

.auro-avis-card-date {
  font-size: 12px;
  color: #999;
  font-weight: 500;
}

.auro-avis-google {
  margin-top: 60px;
  text-align: center;
  padding: 32px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.auro-avis-google-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.auro-avis-google-logo:hover {
  opacity: 0.8;
}

.auro-avis-google-logo span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
}

.auro-avis-google-logo i {
  font-size: 32px;
  color: #4285F4;
}

.auro-avis-google-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.auro-avis-google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #7A7A7A;
}

.auro-avis-google-rating .stars {
  color: #F5C518;
}

@media (max-width: 768px) {
  .auro-avis {
    padding: 60px 16px;
  }

  .auro-avis-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .auro-avis-card {
    padding: 24px;
  }
}

/* ==================== CONTACT ==================== */
.auro-contact {
  padding: 100px 24px;
  background: #FFFFFF;
}

.auro-contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.auro-contact-content {
  animation: fadeInLeft 0.8s ease both;
}

.auro-contact-eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #A8E63D;
  margin-bottom: 12px;
  display: inline-block;
}

.auro-contact-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 24px;
}

.auro-contact-description {
  font-size: 16px;
  color: #7A7A7A;
  line-height: 1.7;
  margin-bottom: 32px;
}

.auro-contact-info {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.auro-contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.auro-contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(168, 230, 61, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B3A2D;
  font-size: 18px;
}

.auro-contact-info-content h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 4px;
}

.auro-contact-info-content a {
  font-size: 18px;
  font-weight: 700;
  color: #1B3A2D;
  transition: color 0.25s ease;
}

.auro-contact-info-content a:hover {
  color: #A8E63D;
}

.auro-contact-availability {
  padding: 20px;
  background: rgba(168, 230, 61, 0.1);
  border-radius: 12px;
  border-left: 4px solid #A8E63D;
}

.auro-contact-availability-text {
  font-size: 14px;
  color: #1B3A2D;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.auro-contact-availability-text i {
  color: #A8E63D;
  animation: pulse 2s infinite;
}

.auro-contact-form-wrapper {
  position: relative;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.auro-contact-form-card {
  max-width: 100%;
  overflow: hidden;
  padding: 40px;
  background: linear-gradient(135deg, #1B3A2D 0%, #2A503F 100%);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(27, 58, 45, 0.2);
}

.auro-contact-form-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.auro-contact-form-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.auro-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auro-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.auro-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.auro-form-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.auro-form-input,
.auro-form-select,
.auro-form-textarea {
  width: 100%;
  max-width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: all 0.25s ease;
}

.auro-form-input::placeholder,
.auro-form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.auro-form-input:focus,
.auro-form-select:focus,
.auro-form-textarea:focus {
  outline: none;
  border-color: #A8E63D;
  background: rgba(255, 255, 255, 0.15);
}

.auro-form-select option {
  background: #1B3A2D;
  color: #FFFFFF;
}

.auro-form-textarea {
  min-height: 120px;
  resize: vertical;
}

.auro-form-submit {
  width: 100%;
  max-width: 100%;
  padding: 16px 32px;
  background: #A8E63D;
  color: #1B3A2D;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.auro-form-submit:hover {
  background: #8BC928;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 230, 61, 0.3);
}

.auro-form-submit.success {
  background: #28a745;
}

@media (max-width: 1024px) {
  .auro-contact-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .auro-contact {
    padding: 60px 16px;
  }

  .auro-contact-form-card {
    padding: 32px 24px;
  }

  .auro-form-row {
    grid-template-columns: 1fr;
  }
}

/* ==================== FOOTER ==================== */
.auro-footer {
  background: #1B3A2D;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 24px 24px;
}

.auro-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.auro-footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auro-footer-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.auro-footer-logo-accent {
  color: #A8E63D;
}

.auro-footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.auro-footer-social {
  display: flex;
  gap: 12px;
}

.auro-footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: all 0.25s ease;
}

.auro-footer-social-link:hover {
  background: #A8E63D;
  color: #1B3A2D;
  transform: translateY(-2px);
}

.auro-footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auro-footer-col-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.auro-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auro-footer-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.auro-footer-link:hover {
  color: #A8E63D;
  transform: translateX(4px);
}

.auro-footer-link i {
  width: 16px;
  text-align: center;
  color: #A8E63D;
}

.auro-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.auro-footer-contact-item i {
  width: 16px;
  text-align: center;
  color: #A8E63D;
}

.auro-footer-contact-item a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s ease;
}

.auro-footer-contact-item a:hover {
  color: #A8E63D;
}

.auro-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.auro-footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.auro-footer-legal {
  display: flex;
  gap: 24px;
}

.auro-footer-legal-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.25s ease;
}

.auro-footer-legal-link:hover {
  color: #A8E63D;
}

.auro-footer-certifications {
  display: flex;
  align-items: center;
  gap: 16px;
}

.auro-footer-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(168, 230, 61, 0.1);
  border: 1px solid rgba(168, 230, 61, 0.2);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #A8E63D;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.auro-footer-cert-badge i {
  font-size: 14px;
}

@media (max-width: 1024px) {
  .auro-footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .auro-footer {
    padding: 60px 16px 24px;
  }

  .auro-footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .auro-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .auro-footer-legal {
    flex-direction: column;
    gap: 12px;
  }
}