@charset "UTF-8";
:root {
  --bg: #F6F4EE;
  --panel: #FFFFFF;
  --ink: #1B1A17;
  --ink-soft: #6B6A63;
  --line: #E4E1D8;
  --green: #96C10F;
  --green-soft: #F1F7E0;
  --blue: #2E4A6B;
  --blue-soft: #E7ECF1;
  --amber: #B8722A;
  --amber-soft: #F5E9D9;
  --etwaz-green: var(--green);
  --etwaz-black: var(--ink);
  --border: var(--line);
  --hero: var(--ink);
  --input-bg: #f3f4f6;
  --muted: var(--ink-soft);
  --submit: var(--green);
  --submit-hover: var(--green);
  --text: var(--ink);
  --etwaz-mobile-topbar-height: 64px;
}

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

html {
  height: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  background: #faf9f5;
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  height: 100%;
  line-height: 1.6;
  margin: 0;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  caret-color: transparent;
}

input,
textarea,
[contenteditable]:not([contenteditable=false]) {
  caret-color: auto;
}

.etwaz-app-body {
  background: #faf9f5;
  display: flex;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
}

.etwaz-app-main {
  background: #faf9f5;
  flex: 1;
  margin-left: 250px;
  min-height: 100vh;
  overflow-x: hidden;
  padding: 3rem;
  padding-bottom: 4rem;
  transition: margin-left 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.etwaz-mobile-topbar {
  align-items: center;
  background: #faf9f5;
  border-bottom: 1px solid rgba(20, 20, 19, 0.08);
  display: none;
  height: var(--etwaz-mobile-topbar-height);
  justify-content: space-between;
  left: 0;
  padding: 0 1.25rem;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 220;
}

.etwaz-mobile-menu-btn {
  align-items: center;
  background: none;
  border: none;
  color: #141413;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 36px;
  justify-content: center;
  padding: 4px;
  transition: none;
  width: 36px;
}
.etwaz-mobile-menu-btn:hover {
  background: none;
}

.etwaz-mobile-menu-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 18px;
  justify-content: center;
  width: 28px;
}
.etwaz-mobile-menu-icon span {
  background: #141413;
  border-radius: 2px;
  display: block;
  height: 2px;
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1), opacity 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.etwaz-mobile-logo {
  align-items: center;
  display: flex;
  text-decoration: none;
}
.etwaz-mobile-logo img {
  display: block;
  height: 28px;
  width: auto;
}

.etwaz-mobile-overlay {
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(2px);
  display: none;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 200;
}

.etwaz-app-body.etwaz-sidebar-collapsed .etwaz-app-main {
  margin-left: 64px;
}

@media (max-width: 968px) {
  .etwaz-app-main {
    margin-left: 0;
    padding: 1rem;
    padding-top: calc(1rem + var(--etwaz-mobile-topbar-height));
  }
  .etwaz-app-body.etwaz-sidebar-collapsed .etwaz-app-main {
    margin-left: 0;
  }
  .etwaz-mobile-topbar {
    display: flex;
  }
  .etwaz-mobile-menu-btn {
    order: 2;
  }
  .etwaz-mobile-logo {
    order: 1;
  }
  .etwaz-mobile-overlay {
    display: block;
  }
  .etwaz-app-body.etwaz-mobile-menu-open {
    height: 100vh;
    overflow: hidden;
  }
  .etwaz-app-body.etwaz-mobile-menu-open .etwaz-mobile-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .etwaz-app-body.etwaz-mobile-menu-open .etwaz-mobile-menu-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .etwaz-app-body.etwaz-mobile-menu-open .etwaz-mobile-menu-icon span:nth-child(2) {
    opacity: 0;
  }
  .etwaz-app-body.etwaz-mobile-menu-open .etwaz-mobile-menu-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
@media (max-width: 768px) {
  .etwaz-app-main {
    padding: 1rem;
    padding-top: calc(1rem + var(--etwaz-mobile-topbar-height));
  }
}
@media (max-width: 480px) {
  .etwaz-app-main {
    padding: 1rem;
    padding-top: calc(1rem + var(--etwaz-mobile-topbar-height));
  }
}
.etwaz-sidebar {
  background: var(--panel);
  border-right: 1px solid rgba(20, 20, 19, 0.09);
  display: flex;
  flex-direction: column;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  transition: width 200ms cubic-bezier(0.4, 0, 0.2, 1), transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 250px;
  z-index: 210;
  overflow: visible;
}
.etwaz-sidebar.etwaz-sidebar-collapsed {
  width: 64px;
}
.etwaz-sidebar.etwaz-sidebar-collapsed .etwaz-sidebar-header {
  justify-content: center;
  padding: 1.5rem 0;
}
.etwaz-sidebar.etwaz-sidebar-collapsed .etwaz-sidebar-header a {
  justify-content: center;
  width: auto;
}
.etwaz-sidebar.etwaz-sidebar-collapsed .etwaz-logo-full {
  display: none;
}
.etwaz-sidebar.etwaz-sidebar-collapsed .etwaz-logo-mark {
  display: block;
}
.etwaz-sidebar.etwaz-sidebar-collapsed .etwaz-sidebar-nav {
  padding: 1rem 0.375rem;
}
.etwaz-sidebar.etwaz-sidebar-collapsed .etwaz-sidebar-item,
.etwaz-sidebar.etwaz-sidebar-collapsed .etwaz-sidebar-logout {
  gap: 0;
  justify-content: center;
  padding: 0.625rem;
}
.etwaz-sidebar.etwaz-sidebar-collapsed .etwaz-sidebar-label,
.etwaz-sidebar.etwaz-sidebar-collapsed .etwaz-sidebar-badge {
  display: none;
}
.etwaz-sidebar.etwaz-sidebar-collapsed .etwaz-sidebar-footer {
  padding: 0.75rem 0.375rem 1rem;
}
.etwaz-sidebar.etwaz-sidebar-collapsed .etwaz-sidebar-toggle-icon {
  transform: rotate(180deg);
}

.etwaz-logo-mark {
  background: var(--green);
  border-radius: 2px;
  display: none;
  height: 4px;
  transform: rotate(-18deg);
  width: 22px;
}

.etwaz-sidebar-toggle {
  align-items: center;
  background: var(--panel);
  border: 1px solid rgba(20, 20, 19, 0.09);
  border-left: none;
  border-radius: 0 8px 8px 0;
  box-shadow: 2px 0 6px rgba(20, 20, 19, 0.06);
  color: #aaa9a3;
  cursor: pointer;
  display: flex;
  height: 40px;
  justify-content: center;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 20px;
  z-index: 101;
}
.etwaz-sidebar-toggle:hover {
  background: #e8e7e0;
  color: #666660;
  box-shadow: 2px 0 10px rgba(20, 20, 19, 0.1);
}
.etwaz-sidebar-toggle:active {
  transform: translateY(-50%) scale(0.95);
}

.etwaz-sidebar-toggle-icon {
  align-items: center;
  display: flex;
  height: 16px;
  justify-content: center;
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 16px;
}
.etwaz-sidebar-toggle-icon svg {
  color: currentColor;
  display: block;
  height: 100%;
  width: 100%;
}

.etwaz-sidebar-header {
  align-items: center;
  border-bottom: 1px solid rgba(20, 20, 19, 0.07);
  display: flex;
  min-height: 72px;
  padding: 1.5rem 1.5rem;
  justify-content: flex-start;
}
.etwaz-sidebar-header a {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  text-decoration: none;
  transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
.etwaz-sidebar-header a:hover {
  opacity: 0.8;
}

.etwaz-sidebar-header .etwaz-logo {
  display: block;
  height: 42px;
  width: auto;
}

.etwaz-sidebar-nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
  padding: 1rem 0.625rem;
}

.etwaz-sidebar-item {
  align-items: center;
  border-radius: 9px;
  color: #666660;
  display: flex;
  font-size: 0.9375rem;
  font-weight: 400;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  position: relative;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.etwaz-sidebar-item:hover {
  background: rgba(20, 20, 19, 0.05);
  color: #141413;
}

.etwaz-sidebar-item-active {
  background: var(--ink);
  color: var(--panel);
  font-weight: 500;
}
.etwaz-sidebar-item-active:hover {
  background: var(--ink);
  color: var(--panel);
}
.etwaz-sidebar-item-active::before {
  background: var(--submit, #96c10f);
  border-radius: 0 3px 3px 0;
  bottom: 20%;
  content: "";
  left: 0;
  position: absolute;
  top: 20%;
  width: 3px;
}

.etwaz-sidebar-icon {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: 18px;
  justify-content: center;
  width: 18px;
}
.etwaz-sidebar-icon svg {
  color: currentColor;
  display: block;
  height: 100%;
  width: 100%;
}

.etwaz-sidebar-label {
  flex: 1;
}

.etwaz-sidebar-badge {
  align-items: center;
  background: var(--amber);
  border-radius: 9999px;
  color: #fff;
  display: flex;
  font-size: 0.6875rem;
  font-weight: 700;
  height: 18px;
  justify-content: center;
  line-height: 1;
  min-width: 18px;
  padding: 0 5px;
}

.etwaz-sidebar-footer {
  border-top: 1px solid rgba(20, 20, 19, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 0.75rem 0.625rem 1rem;
}

.etwaz-sidebar-logout {
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 9px;
  color: #666660;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 400;
  gap: 0.75rem;
  line-height: inherit;
  margin: 0;
  padding: 0.625rem 0.875rem;
  text-align: left;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  width: 100%;
  white-space: nowrap;
}
.etwaz-sidebar-logout:hover {
  background: rgba(232, 80, 80, 0.06);
  color: #e85050;
}
.etwaz-sidebar-logout .etwaz-sidebar-icon {
  flex-shrink: 0;
}
.etwaz-sidebar-logout .etwaz-sidebar-label {
  flex: 1;
}

@media (max-width: 968px) {
  .etwaz-sidebar {
    height: calc(100vh - var(--etwaz-mobile-topbar-height));
    top: var(--etwaz-mobile-topbar-height);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    width: 280px;
  }
  .etwaz-sidebar-header {
    display: none;
  }
  .etwaz-sidebar.etwaz-sidebar-open {
    transform: translateX(0);
  }
  .etwaz-sidebar-toggle {
    display: none;
  }
}
@media (max-width: 768px) {
  .etwaz-sidebar {
    width: 100%;
    max-width: 300px;
  }
  .etwaz-sidebar-nav {
    padding: 0.5rem 0.5rem;
  }
  .etwaz-sidebar-item {
    padding: 0.625rem 0.5rem;
  }
}
@media (max-width: 480px) {
  .etwaz-sidebar {
    width: 100%;
  }
  .etwaz-sidebar-item {
    padding: 0.5rem 0.5rem;
    font-size: 0.875rem;
  }
  .etwaz-sidebar-icon {
    height: 17px;
    width: 17px;
  }
}
.etwaz-auth-wrapper {
  display: grid;
  min-height: 100vh;
  place-items: center;
}

.etwaz-auth-card {
  background: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  min-height: 100vh;
  overflow: hidden;
  width: 100%;
}

.etwaz-auth-hero {
  align-items: center;
  background: var(--hero);
  display: flex;
  padding: 20px 24px;
}

.etwaz-logo {
  height: 50px;
  width: auto;
}

.etwaz-auth-body {
  padding: 24px 100px;
}

.etwaz-auth-form-container {
  margin: 0 150px;
}

.etwaz-title {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 0.25rem 0;
  text-align: center;
}

.etwaz-subtitle {
  color: var(--muted);
  margin: 0 0 1.25rem 0;
  text-align: center;
}

.etwaz-auth-footer {
  border-top: 1px solid var(--border);
  color: #374151;
  margin: 1rem 0 0 0;
  padding: 0.75rem 0 0 0;
}

.etwaz-auth-footer a {
  margin: 0 0 0 0.25rem;
  text-decoration: none;
}

.ui.form .field > label,
.etwaz-form-body .field > label {
  font-weight: 600;
}

.etwaz-auth-body .two.fields,
.ui.form .two.fields {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.etwaz-auth-body .three.fields,
.ui.form .three.fields {
  display: grid !important;
  gap: 1rem;
  grid-template-columns: 1fr 1fr 1fr !important;
  width: 100%;
}

.etwaz-auth-body .two.fields > .field,
.ui.form .two.fields > .field {
  flex: 1;
}

.etwaz-auth-body .three.fields > .field,
.ui.form .three.fields > .field {
  width: 100%;
}

@media (max-width: 480px) {
  .etwaz-auth-body .two.fields,
  .ui.form .two.fields {
    flex-direction: column;
  }
  .etwaz-auth-body .three.fields,
  .ui.form .three.fields {
    grid-template-columns: 1fr !important;
  }
}
.etwaz-auth-body .ui.input > input,
.etwaz-auth-body input[type=text],
.etwaz-auth-body input[type=email],
.etwaz-auth-body input[type=password],
.etwaz-auth-body input[type=file],
.etwaz-form-body .ui.input > input,
.etwaz-form-body input[type=text],
.etwaz-form-body input[type=email],
.etwaz-form-body input[type=password],
.etwaz-form-body input[type=file] {
  background: var(--input-bg) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 8px !important;
  padding: 0.75rem 1rem !important;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1) !important;
  width: 100% !important;
}
.etwaz-auth-body .ui.input > input:focus,
.etwaz-auth-body input[type=text]:focus,
.etwaz-auth-body input[type=email]:focus,
.etwaz-auth-body input[type=password]:focus,
.etwaz-auth-body input[type=file]:focus,
.etwaz-form-body .ui.input > input:focus,
.etwaz-form-body input[type=text]:focus,
.etwaz-form-body input[type=email]:focus,
.etwaz-form-body input[type=password]:focus,
.etwaz-form-body input[type=file]:focus {
  border-color: var(--submit) !important;
  box-shadow: 0 0 0 3px rgba(150, 193, 15, 0.1) !important;
  outline: none !important;
}
.etwaz-auth-body .ui.input > input::placeholder,
.etwaz-auth-body input[type=text]::placeholder,
.etwaz-auth-body input[type=email]::placeholder,
.etwaz-auth-body input[type=password]::placeholder,
.etwaz-auth-body input[type=file]::placeholder,
.etwaz-form-body .ui.input > input::placeholder,
.etwaz-form-body input[type=text]::placeholder,
.etwaz-form-body input[type=email]::placeholder,
.etwaz-form-body input[type=password]::placeholder,
.etwaz-form-body input[type=file]::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.etwaz-auth-body .ui.left.icon.input > input {
  padding-left: 2.2em !important;
}

.etwaz-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0 0 0;
}

.etwaz-remember {
  -webkit-tap-highlight-color: transparent;
  align-items: center;
  display: flex;
  gap: 0.625rem;
  margin: 0.5rem 0 0 0;
  user-select: none;
}

.etwaz-remember-label {
  color: var(--muted);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
  user-select: none;
}

.etwaz-switch {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  height: 24px;
  position: relative;
  user-select: none;
  width: 44px;
}

.etwaz-switch > input {
  appearance: none;
  height: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  width: 0;
}

.etwaz-switch > .etwaz-slider {
  background: #e5e7eb;
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  display: block;
  height: 100%;
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease;
  width: 100%;
}

.etwaz-switch > .etwaz-slider::before {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  content: "";
  display: block;
  height: 20px;
  left: 2px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  width: 20px;
}

.etwaz-switch > input:checked + .etwaz-slider {
  background: var(--submit);
  border-color: var(--submit);
}

.etwaz-switch > input:checked + .etwaz-slider::before {
  transform: translate(20px, -50%);
}

.etwaz-switch > input:focus-visible + .etwaz-slider {
  box-shadow: 0 0 0 3px rgba(150, 193, 15, 0.3);
}

.etwaz-switch > input:disabled + .etwaz-slider {
  cursor: not-allowed;
  opacity: 0.6;
}

.field.required > label::after,
label.required::after {
  content: " *";
  color: #e11d48;
  font-weight: bold;
}

@media (max-width: 768px) {
  .etwaz-auth-body {
    padding: 2rem 1.5rem;
  }
  .etwaz-auth-form-container {
    margin: 0;
  }
  .etwaz-title {
    font-size: 1.75rem;
  }
  .etwaz-subtitle {
    font-size: 0.9375rem;
  }
  .etwaz-auth-body .two.fields,
  .ui.form .two.fields {
    flex-direction: column;
  }
  .etwaz-auth-body .three.fields,
  .ui.form .three.fields {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 640px) {
  .etwaz-auth-body {
    padding: 1.5rem 1rem;
  }
  .etwaz-auth-form-container {
    margin: 0;
  }
  .etwaz-title {
    font-size: 1.5rem;
  }
  .etwaz-subtitle {
    font-size: 0.875rem;
  }
  .etwaz-logo {
    height: 44px;
  }
  .etwaz-auth-hero {
    padding: 1rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .etwaz-auth-card {
    width: 100%;
  }
  .etwaz-auth-body {
    padding: 1rem;
  }
  .etwaz-auth-form-container {
    margin: 0;
  }
  .etwaz-title {
    font-size: 1.25rem;
  }
  .etwaz-subtitle {
    font-size: 0.8125rem;
  }
  .etwaz-logo {
    height: 40px;
  }
  .etwaz-auth-hero {
    padding: 0.5rem 1rem;
  }
  .etwaz-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  .etwaz-actions button {
    width: 100%;
  }
}
.etwaz-submit {
  background: var(--ink) !important;
  border: none !important;
  border-radius: 12px !important;
  box-shadow: none;
  color: var(--panel) !important;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.875rem 2rem !important;
  text-align: center;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-submit:hover, .etwaz-submit:focus {
  background: #5e5d59 !important;
  box-shadow: none;
  transform: translateY(-1px);
}
.etwaz-submit:active {
  transform: translateY(0);
}
.etwaz-submit:disabled, .etwaz-submit[disabled], .etwaz-submit[aria-disabled=true] {
  cursor: not-allowed;
  opacity: 0.4;
  pointer-events: none;
  transform: none;
}

.etwaz-btn-add {
  align-items: center;
  display: inline-flex;
  gap: 0.5rem;
  text-decoration: none;
  white-space: nowrap;
}

.etwaz-btn-add span {
  font-size: 1.2rem;
  font-weight: bold;
}

.etwaz-btn-invite {
  background: var(--ink) !important;
  border: none !important;
  border-radius: 12px !important;
  box-shadow: none;
  color: var(--panel) !important;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem !important;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.etwaz-btn-invite:hover {
  background: #5e5d59 !important;
  transform: translateY(-1px);
}
.etwaz-btn-invite:active {
  transform: translateY(0);
}

.etwaz-btn-small {
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem !important;
}

.etwaz-btn-danger {
  background: #ef4444 !important;
  border: none !important;
  border-radius: 8px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  color: #ffffff !important;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem !important;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-btn-danger:hover {
  background: #dc2626 !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}
.etwaz-btn-danger:active {
  transform: translateY(0);
}

.etwaz-btn-secondary {
  background: #6b7280 !important;
  border: none !important;
  border-radius: 8px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  color: #ffffff !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem !important;
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-btn-secondary:hover {
  background: #4b5563 !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}
.etwaz-btn-secondary:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .etwaz-submit {
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem !important;
  }
  .etwaz-btn-invite,
  .etwaz-btn-danger,
  .etwaz-btn-secondary {
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem !important;
  }
  .etwaz-btn-small {
    font-size: 0.8125rem;
    padding: 0.5rem 0.875rem !important;
  }
}
@media (max-width: 640px) {
  .etwaz-submit {
    width: auto;
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem !important;
  }
  .etwaz-btn-invite {
    width: auto;
    font-size: 0.8125rem;
  }
  .etwaz-btn-small {
    width: auto;
    font-size: 0.8125rem;
  }
  .etwaz-btn-danger,
  .etwaz-btn-secondary {
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem !important;
    width: auto;
  }
}
@media (max-width: 480px) {
  .etwaz-submit {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem !important;
  }
  .etwaz-btn-invite,
  .etwaz-btn-danger,
  .etwaz-btn-secondary {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem !important;
    width: auto;
  }
  .etwaz-btn-small {
    font-size: 0.75rem;
    padding: 0.4375rem 0.75rem !important;
  }
}
.etwaz-dashboard {
  margin: 0 auto;
  max-width: 1400px;
  padding-bottom: 4rem;
}

.etwaz-projects-page-header {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.etwaz-projects-page-header h1 {
  color: var(--text);
  font-family: "Fraunces", serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.25rem 0;
}
.etwaz-projects-page-header p {
  color: var(--muted);
  font-size: 0.875rem;
  margin: 0;
}

.etwaz-kpi-grid {
  display: flex;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

.etwaz-kpi-card {
  background: #ffffff;
  border: 1px solid rgba(20, 20, 19, 0.07);
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(20, 20, 19, 0.05);
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.625rem;
  padding: 1.375rem 1.5rem;
}

.etwaz-kpi-card-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.etwaz-kpi-card-label {
  color: #6b7280;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.etwaz-kpi-card-icon {
  align-items: center;
  border-radius: 9px;
  display: flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}
.etwaz-kpi-card-icon--accent {
  background: rgba(150, 193, 15, 0.1);
  color: var(--submit);
}
.etwaz-kpi-card-icon--neutral {
  background: rgba(20, 20, 19, 0.05);
  color: #6b7280;
}
.etwaz-kpi-card-icon--alert {
  background: var(--amber-soft);
  color: var(--amber);
}

.etwaz-kpi-card-value {
  color: var(--text);
  font-family: "IBM Plex Mono", monospace;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.etwaz-kpi-card--alert .etwaz-kpi-card-value {
  color: var(--amber);
}

.etwaz-kpi-card-sub {
  color: #aaa;
  font-size: 0.75rem;
  margin-top: 0.3rem;
}

.etwaz-projects-toolbar {
  align-items: center;
  display: flex;
  gap: 0.625rem;
  margin-bottom: 1rem;
  flex-wrap: nowrap;
  position: relative;
}

.etwaz-toolbar-search {
  flex: 0 1 440px;
  max-width: 440px;
  min-width: 200px;
  position: relative;
}
.etwaz-toolbar-search .etwaz-search-icon {
  color: #aaa;
  left: 0.875rem;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.etwaz-toolbar-search .etwaz-search-input {
  background: #ffffff;
  border: 1px solid rgba(20, 20, 19, 0.1);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(20, 20, 19, 0.04);
  color: var(--text);
  font-size: 0.9375rem;
  height: 40px;
  outline: none;
  padding: 0 0.875rem 0 2.625rem;
  transition: border-color 0.15s;
  width: 100%;
}
.etwaz-toolbar-search .etwaz-search-input::placeholder {
  color: #aaa;
}
.etwaz-toolbar-search .etwaz-search-input:focus {
  border-color: var(--submit);
}

.etwaz-status-filters {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 6px;
  position: static;
}

.etwaz-status-filter-btn {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 9999px;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.78125rem;
  font-weight: 600;
  padding: 8px 14px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.etwaz-status-filter-btn:hover {
  border-color: var(--ink);
  color: var(--text);
}
.etwaz-status-filter-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--panel);
}
.etwaz-status-filter-btn.active:hover {
  color: var(--panel);
}

.etwaz-view-toggle {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(20, 20, 19, 0.08);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(20, 20, 19, 0.04);
  display: flex;
  gap: 2px;
  padding: 3px;
}

.etwaz-view-toggle-btn {
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 9px;
  color: #aaa;
  cursor: pointer;
  display: flex;
  height: 32px;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  width: 32px;
}
.etwaz-view-toggle-btn:hover {
  background: rgba(20, 20, 19, 0.05);
  color: var(--text);
}
.etwaz-view-toggle-btn.active {
  background: var(--ink);
  color: var(--panel);
}

.etwaz-toolbar-filter-spacer,
.etwaz-toolbar-spacer {
  flex: 1 1 0;
  min-width: 0;
}

.etwaz-dashboard .etwaz-btn-add {
  flex: 0 0 auto;
  white-space: nowrap;
}

.etwaz-project-badge {
  align-items: center;
  border-radius: 20px;
  display: inline-flex;
  font-size: 0.71875rem;
  font-weight: 500;
  gap: 5px;
  letter-spacing: 0.01em;
  padding: 3px 10px;
  white-space: nowrap;
}
.etwaz-project-badge .badge-dot {
  border-radius: 50%;
  flex-shrink: 0;
  height: 6px;
  width: 6px;
}
.etwaz-project-badge--active {
  background: #edf7e0;
  color: var(--submit, #96c10f);
}
.etwaz-project-badge--active .badge-dot {
  background: var(--submit, #96c10f);
}
.etwaz-project-badge--draft {
  background: #f0f0ee;
  color: #666662;
}
.etwaz-project-badge--draft .badge-dot {
  background: #aaaaaa;
}
.etwaz-project-badge--completed {
  background: #e8f0fe;
  color: #1a5cb8;
}
.etwaz-project-badge--completed .badge-dot {
  background: #3b7aff;
}
.etwaz-project-badge--archived {
  background: #f5f5f3;
  color: #999;
}
.etwaz-project-badge--archived .badge-dot {
  background: #ccc;
}

.etwaz-projects-list {
  background: #ffffff;
  border: 1px solid rgba(20, 20, 19, 0.07);
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(20, 20, 19, 0.05);
  margin-bottom: 2rem;
  overflow: hidden;
}

.etwaz-list-header {
  align-items: center;
  background: #FFF;
  border-bottom: 1px solid rgba(20, 20, 19, 0.07);
  display: grid;
  grid-template-columns: 56px 2fr 1.2fr 100px 1.3fr 110px 80px;
  height: 40px;
  padding: 0 1.25rem;
}
.etwaz-list-header span {
  color: #aaa;
  font-size: 0.71875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.etwaz-list-row {
  align-items: center;
  border-bottom: 1px solid rgba(20, 20, 19, 0.05);
  cursor: pointer;
  display: grid;
  grid-template-columns: 56px 2fr 1.2fr 100px 1.3fr 110px 80px;
  height: 68px;
  padding: 0 1.25rem;
  position: relative;
  text-decoration: none;
  transition: background 0.12s;
}
.etwaz-list-row:last-child {
  border-bottom: none;
}
.etwaz-list-row:hover {
  background: #f5f5f0;
}
.etwaz-list-row.hidden {
  display: none;
}

.etwaz-list-row--needs-attention::before {
  background: #e85050;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 4px;
}

.etwaz-list-thumb {
  flex-shrink: 0;
  height: 40px;
  overflow: hidden;
  position: relative;
  width: 40px;
}
.etwaz-list-thumb img {
  border-radius: 9px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.etwaz-list-thumb-placeholder {
  align-items: center;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 9px;
  display: flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}
.etwaz-list-thumb-placeholder svg {
  color: #bbb;
  height: 18px;
  opacity: 0.6;
  width: 18px;
}

.etwaz-list-name-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 1rem;
}

.etwaz-list-title {
  align-items: center;
  color: var(--text);
  display: flex;
  font-family: "Fraunces", serif;
  font-size: 0.9375rem;
  font-weight: 600;
  gap: 8px;
}

.etwaz-list-status {
  font-size: 0.75rem;
  font-weight: 500;
}
.etwaz-list-status--active {
  color: var(--submit, #96c10f);
}
.etwaz-list-status--draft {
  color: #666662;
}
.etwaz-list-status--completed {
  color: #1a5cb8;
}
.etwaz-list-status--archived {
  color: #999;
}

.etwaz-list-location-col,
.etwaz-list-surface-col,
.etwaz-list-cost-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 1rem;
}

.etwaz-list-location-value {
  color: #444;
  font-size: 0.84375rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.etwaz-list-surface-value,
.etwaz-list-cost-value {
  color: var(--text);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8125rem;
  font-weight: 500;
}

.etwaz-list-progress-col {
  align-items: center;
  display: flex;
  gap: 8px;
  padding-right: 1rem;
}

.etwaz-list-progress-track {
  background: var(--line);
  border-radius: 9999px;
  flex: 1;
  height: 6px;
  overflow: hidden;
  position: relative;
}

.etwaz-list-progress-fill {
  background: var(--submit);
  border-radius: 9999px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.etwaz-list-progress-pct {
  color: var(--text);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  font-weight: 500;
  width: 32px;
}

.etwaz-list-actions {
  display: flex;
  justify-content: flex-end;
}

.etwaz-results-count {
  color: #aaa;
  font-size: 0.78125rem;
  margin-bottom: 0.75rem;
  padding-left: 2px;
}

.etwaz-dashboard-header {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.etwaz-dashboard-title {
  color: var(--text);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 0.25rem 0;
}

.etwaz-dashboard-subtitle {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
}

.etwaz-stats-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 1rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-stats-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.etwaz-stat-item {
  flex: 1;
  position: relative;
  text-align: center;
}
.etwaz-stat-item a {
  color: inherit;
  display: block;
  text-decoration: none;
}
.etwaz-stat-item:not(:last-child)::after {
  background: #e5e7eb;
  content: "";
  height: 60%;
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

.etwaz-stat-icon {
  align-items: center;
  color: var(--submit);
  display: flex;
  height: 32px;
  justify-content: center;
  margin: 0 auto 0.5rem;
  opacity: 0.8;
  width: 32px;
}
.etwaz-stat-icon svg {
  height: 100%;
  width: 100%;
}

.etwaz-stat-value {
  color: var(--text);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.25rem;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.etwaz-stat-item:hover .etwaz-stat-value {
  color: var(--submit);
}

.etwaz-stat-label {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}

.etwaz-projects-section {
  margin-bottom: 2rem;
}

.etwaz-projects-section-title {
  color: var(--text);
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem 0;
}

.etwaz-search-wrapper {
  position: relative;
}

.etwaz-search-input-wrapper {
  align-items: center;
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  display: flex;
  gap: 0.5rem;
  padding: 0 1rem;
  position: relative;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-search-input-wrapper:focus-within {
  border-color: var(--submit);
  box-shadow: 0 0 0 3px rgba(150, 193, 15, 0.1);
}

.etwaz-search-icon {
  color: var(--muted);
  flex-shrink: 0;
  height: 20px;
  width: 20px;
}

.etwaz-search-input-wrapper:focus-within .etwaz-search-icon {
  color: var(--submit);
}

.etwaz-search-input {
  background: transparent;
  border: none;
  color: var(--text);
  flex: 1;
  font-size: 1rem;
  outline: none;
  padding: 1rem 0;
  width: 100%;
}
.etwaz-search-input::placeholder {
  color: var(--muted);
}

.etwaz-projects-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-bottom: 6rem;
}

.etwaz-search-wrapper {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.etwaz-search-wrapper .etwaz-search-input-wrapper {
  flex: 1;
  min-width: 0;
}

.etwaz-search-wrapper .etwaz-submit {
  flex: 0 0 auto;
  width: auto !important;
}

.etwaz-empty-state {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  padding: 4rem;
  text-align: center;
}

.etwaz-empty-state p {
  margin: 0 0 1.5rem 0;
}

.etwaz-muted {
  color: var(--muted);
}

@media (max-width: 968px) {
  .etwaz-dashboard-title {
    font-size: 2rem;
  }
  .etwaz-dashboard-subtitle {
    font-size: 0.9375rem;
  }
  .etwaz-stats-card {
    gap: 1rem;
  }
  .etwaz-stat-value {
    font-size: 1.75rem;
  }
  .etwaz-projects-section-title {
    font-size: 1.625rem;
  }
}
@media (min-width: 769px) and (max-width: 968px) {
  .etwaz-dashboard .etwaz-projects-toolbar {
    flex-wrap: wrap;
  }
  .etwaz-dashboard .etwaz-toolbar-filter-spacer {
    display: none;
  }
  .etwaz-dashboard .etwaz-status-filters {
    left: auto;
    margin: 0 auto;
    order: 1;
    position: static;
    transform: none;
  }
}
@media (max-width: 768px) {
  .etwaz-dashboard .etwaz-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .etwaz-dashboard .etwaz-projects-toolbar {
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .etwaz-dashboard .etwaz-toolbar-search {
    flex: 1 1 auto;
    max-width: none;
    min-width: 0;
    order: 1;
  }
  .etwaz-dashboard .etwaz-btn-add {
    flex: 0 0 auto;
    order: 2;
    padding: 0 1rem !important;
    white-space: nowrap;
  }
  .etwaz-dashboard .etwaz-toolbar-filter-spacer,
  .etwaz-dashboard .etwaz-toolbar-spacer,
  .etwaz-dashboard .etwaz-view-toggle {
    display: none;
  }
  .etwaz-dashboard .etwaz-status-filters {
    justify-content: space-between;
    left: auto;
    order: 3;
    position: static;
    transform: none;
    width: 100%;
  }
  .etwaz-dashboard .etwaz-status-filter-btn {
    flex: 1 1 0;
    font-size: 0.75rem;
    min-width: 0;
    padding: 5px 8px;
    text-align: center;
  }
  .etwaz-dashboard #projects-list-view,
  .etwaz-dashboard #projects-search-list {
    display: none !important;
  }
  .etwaz-dashboard #projects-grid-view,
  .etwaz-dashboard #projects-search-grid {
    display: grid !important;
  }
  .etwaz-dashboard-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .etwaz-dashboard-title {
    font-size: 1.75rem;
  }
  .etwaz-dashboard-subtitle {
    font-size: 0.875rem;
  }
  .etwaz-projects-section-title {
    font-size: 1.5rem;
  }
  .etwaz-stats-card {
    padding: 1rem;
  }
  .etwaz-stat-value {
    font-size: 1.5rem;
  }
  .etwaz-stat-label {
    font-size: 0.75rem;
  }
  .etwaz-stat-icon {
    height: 24px;
    width: 24px;
  }
  .etwaz-projects-grid {
    gap: 1rem;
  }
  .etwaz-search-input {
    font-size: 0.9375rem;
  }
}
@media (max-width: 640px) {
  .etwaz-dashboard-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .etwaz-dashboard-title {
    font-size: 1.625rem;
  }
  .etwaz-dashboard-subtitle {
    font-size: 0.8125rem;
  }
  .etwaz-projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .etwaz-projects-section-title {
    font-size: 1.375rem;
  }
  .etwaz-stats-card {
    gap: 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1.5rem;
  }
  .etwaz-stat-icon {
    margin-bottom: 0.25rem;
  }
  .etwaz-stat-value {
    font-size: 1.75rem;
  }
  .etwaz-stat-label {
    font-size: 0.75rem;
  }
  .etwaz-stat-item::after {
    display: none;
  }
  .etwaz-search-input-wrapper {
    padding: 0 0.5rem;
  }
  .etwaz-search-input {
    font-size: 0.875rem;
    padding: 0.5rem 0;
  }
  .etwaz-empty-state {
    padding: 2rem;
  }
  .etwaz-dashboard {
    font-size: 0.875rem;
  }
  .etwaz-dashboard .etwaz-submit,
  .etwaz-dashboard .etwaz-btn-secondary,
  .etwaz-dashboard .etwaz-btn-add {
    font-size: 0.875rem;
  }
  .etwaz-profile-compact .profile-tab {
    font-size: 0.8125rem;
    padding: 0.5rem 0.875rem;
  }
  .etwaz-profile-compact .etwaz-card-title,
  .etwaz-profile-compact .etwaz-card h2 {
    font-size: 1rem;
  }
  .etwaz-profile-compact .field > label {
    font-size: 0.8125rem;
  }
  .etwaz-profile-compact input,
  .etwaz-profile-compact select,
  .etwaz-profile-compact textarea {
    font-size: 0.8125rem !important;
  }
  .etwaz-profile-compact .etwaz-card-title-icon {
    height: 2rem;
    width: 2rem;
  }
  .etwaz-profile-compact .etwaz-card-title-icon svg {
    height: 1rem;
    width: 1rem;
  }
  .etwaz-profile-compact .etwaz-card-section-header .etwaz-card-title {
    margin-left: 0.5rem;
  }
  .etwaz-profile-compact .etwaz-card .etwaz-card-section-header {
    margin-left: 0;
  }
  .etwaz-profile-compact .etwaz-form-errors-icon svg {
    height: 18px;
    width: 18px;
  }
  .etwaz-profile-compact #tab-security .etwaz-card-title {
    font-size: 0.9375rem;
  }
  .etwaz-profile-compact #tab-security .field > label {
    font-size: 0.8125rem;
  }
  .etwaz-profile-compact #tab-security input {
    font-size: 0.8125rem !important;
  }
  .etwaz-profile-compact .etwaz-recent-project-item-title {
    font-size: 0.875rem;
  }
  .etwaz-profile-compact .etwaz-recent-project-item-meta {
    font-size: 0.75rem !important;
  }
  .etwaz-profile-compact #tab-cookies .etwaz-card > p {
    font-size: 0.8125rem;
  }
  .etwaz-profile-compact #tab-cookies .etwaz-card-title {
    font-size: 0.9375rem;
  }
  .etwaz-profile-compact #tab-cookies .etwaz-cookie-category-title {
    font-size: 0.875rem !important;
  }
  .etwaz-profile-compact #tab-cookies .etwaz-cookie-category-description {
    font-size: 0.8125rem !important;
  }
  .etwaz-profile-compact #tab-cookies .etwaz-cookie-policy-link {
    font-size: 0.8125rem !important;
  }
}
@media (max-width: 480px) {
  .etwaz-dashboard .etwaz-projects-toolbar {
    align-items: stretch;
  }
  .etwaz-dashboard .etwaz-status-filter-btn {
    font-size: 0.71875rem;
    padding: 5px 6px;
  }
  .etwaz-dashboard-title {
    font-size: 1.5rem;
  }
  .etwaz-dashboard-subtitle {
    font-size: 0.75rem;
  }
  .etwaz-projects-section-title {
    font-size: 1.25rem;
  }
  .etwaz-stats-card {
    padding: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .etwaz-stat-value {
    font-size: 1.5rem;
  }
  .etwaz-stat-label {
    font-size: 0.6875rem;
  }
  .etwaz-stat-icon {
    height: 28px;
    width: 28px;
  }
  .etwaz-empty-state {
    padding: 1.5rem;
  }
  .etwaz-empty-state p {
    font-size: 0.875rem;
  }
  .etwaz-projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .etwaz-dashboard {
    font-size: 0.8125rem;
  }
  .etwaz-dashboard .etwaz-submit,
  .etwaz-dashboard .etwaz-btn-secondary,
  .etwaz-dashboard .etwaz-btn-add {
    font-size: 0.8125rem;
  }
  .etwaz-profile-compact .profile-tab {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
  }
  .etwaz-profile-compact .etwaz-card-title,
  .etwaz-profile-compact .etwaz-card h2 {
    font-size: 0.9375rem;
  }
  .etwaz-profile-compact .field > label {
    font-size: 0.75rem;
  }
  .etwaz-profile-compact input,
  .etwaz-profile-compact select,
  .etwaz-profile-compact textarea {
    font-size: 0.75rem !important;
  }
  .etwaz-profile-compact .etwaz-card-title-icon {
    height: 1.75rem;
    width: 1.75rem;
  }
  .etwaz-profile-compact .etwaz-card-title-icon svg {
    height: 0.875rem;
    width: 0.875rem;
  }
  .etwaz-profile-compact .etwaz-card-section-header .etwaz-card-title {
    margin-left: 0.25rem;
  }
  .etwaz-profile-compact .etwaz-card .etwaz-card-section-header {
    margin-left: 0;
  }
  .etwaz-profile-compact .etwaz-form-errors-icon svg {
    height: 16px;
    width: 16px;
  }
  .etwaz-profile-compact #tab-security .etwaz-card-title {
    font-size: 0.875rem;
  }
  .etwaz-profile-compact #tab-security .field > label {
    font-size: 0.75rem;
  }
  .etwaz-profile-compact #tab-security input {
    font-size: 0.75rem !important;
  }
  .etwaz-profile-compact .etwaz-recent-project-item-title {
    font-size: 0.8125rem;
  }
  .etwaz-profile-compact .etwaz-recent-project-item-meta {
    font-size: 0.6875rem !important;
  }
  .etwaz-profile-compact #tab-cookies .etwaz-card > p {
    font-size: 0.75rem;
  }
  .etwaz-profile-compact #tab-cookies .etwaz-card-title {
    font-size: 0.875rem;
  }
  .etwaz-profile-compact #tab-cookies .etwaz-cookie-category-title {
    font-size: 0.8125rem !important;
  }
  .etwaz-profile-compact #tab-cookies .etwaz-cookie-category-description {
    font-size: 0.75rem !important;
  }
  .etwaz-profile-compact #tab-cookies .etwaz-cookie-policy-link {
    font-size: 0.75rem !important;
  }
}
.etwaz-project-card-archived {
  opacity: 0.6;
  filter: grayscale(0.4);
}

.etwaz-project-card-wrapper {
  position: relative;
}

.etwaz-project-card {
  background: #ffffff;
  border: 1px solid rgba(20, 20, 19, 0.07);
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(20, 20, 19, 0.05);
  display: block;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}
.etwaz-project-card:hover {
  box-shadow: 0 6px 20px rgba(20, 20, 19, 0.1);
  transform: translateY(-2px);
}

.etwaz-project-card-image-wrapper {
  height: 180px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.etwaz-project-card-image {
  height: 100%;
  width: 100%;
}
.etwaz-project-card-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.etwaz-project-card:hover .etwaz-project-card-image img {
  transform: scale(1.04);
}

.etwaz-project-card-placeholder {
  align-items: center;
  background: linear-gradient(135deg, #f0efe8 0%, #e5e4dc 100%);
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}
.etwaz-project-card-placeholder svg {
  color: #c8c7c0;
  height: 40px;
  width: 40px;
}

.etwaz-project-card-status {
  bottom: 10px;
  left: 12px;
  position: absolute;
  z-index: 2;
}

.etwaz-project-card-owner-badge {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9999px;
  color: #ffffff;
  display: inline-flex;
  font-size: 0.6875rem;
  font-weight: 600;
  max-width: calc(100% - 2rem);
  overflow: hidden;
  padding: 0.3rem 0.6rem;
  position: absolute;
  right: 0.75rem;
  text-overflow: ellipsis;
  top: 0.75rem;
  white-space: nowrap;
  z-index: 3;
}

.etwaz-project-card-content {
  padding: 0.875rem 1rem;
  position: relative;
}

.etwaz-project-card-content--needs-attention::before {
  background: #e85050;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 4px;
}

.etwaz-project-card-title {
  color: #141413;
  font-family: "Fraunces", serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 0.25rem 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.etwaz-project-card-city {
  align-items: center;
  color: #888;
  display: flex;
  font-size: 0.78125rem;
  gap: 3px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.etwaz-project-card-city svg {
  color: #bbb;
  flex-shrink: 0;
}

.etwaz-project-card-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.625rem;
}

.etwaz-project-card-surface {
  color: #aaa;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
}

.etwaz-project-card-progress {
  margin-top: 0.5rem;
}

.etwaz-project-card-progress-track {
  background: rgba(20, 20, 19, 0.07);
  border-radius: 2px;
  height: 3px;
  overflow: hidden;
  width: 100%;
}

.etwaz-project-card-progress-fill {
  background: var(--submit, #96c10f);
  border-radius: 2px;
  height: 100%;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.etwaz-projects-grid {
  display: grid;
  gap: 0.875rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 4rem;
}

@media (max-width: 968px) {
  .etwaz-projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .etwaz-projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
  .etwaz-project-card-image-wrapper {
    height: 150px;
  }
}
@media (max-width: 480px) {
  .etwaz-projects-grid {
    grid-template-columns: 1fr;
  }
  .etwaz-project-card-image-wrapper {
    height: 180px;
  }
}
.etwaz-form-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  margin: 0 auto;
  max-width: 95%;
  overflow: hidden;
  overflow-x: hidden;
  transition: box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
.etwaz-form-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.etwaz-form-body {
  overflow-x: hidden;
  overflow-y: visible;
  padding: 3rem;
  width: 100%;
}

.etwaz-form-body .etwaz-title {
  color: var(--text);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
  text-align: left;
}

.etwaz-form-body .etwaz-subtitle {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  text-align: left;
}

.ui.form .fields,
.fields {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin: 0 0 1rem 0;
}

.two.fields,
.fields.two {
  grid-template-columns: 1fr 1fr !important;
}

.three.fields,
.fields.three {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
}

.fields .field {
  min-width: 0;
  width: 100%;
}

.ui.form .field {
  margin: 0 0 1rem 0;
}

.etwaz-ttc-display {
  display: flex;
  justify-content: flex-start;
}

.etwaz-ttc-pill {
  align-items: center;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  color: var(--text);
  display: inline-flex;
  font-size: 1.125rem;
  font-weight: 600;
  justify-content: center;
  min-height: 44px;
  min-width: 160px;
  padding: 0.5rem 1rem;
  user-select: none;
}

.etwaz-select-wrapper {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.etwaz-select,
.etwaz-form-body select {
  background: var(--input-bg) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 8px !important;
  flex: 1;
  padding: 0.75rem 1rem !important;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1) !important;
  width: 100% !important;
}
.etwaz-select:focus,
.etwaz-form-body select:focus {
  border-color: #141413 !important;
  box-shadow: 0 0 0 3px rgba(20, 20, 19, 0.08) !important;
  outline: none !important;
}

.etwaz-select[type=number],
.etwaz-form-body input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.etwaz-select[type=number]::-webkit-inner-spin-button,
.etwaz-select[type=number]::-webkit-outer-spin-button,
.etwaz-form-body input[type=number]::-webkit-inner-spin-button,
.etwaz-form-body input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.field-error label {
  color: #ef4444;
}
.field-error input,
.field-error select,
.field-error textarea {
  border-color: #ef4444 !important;
  background-color: #fef2f2 !important;
}
.field-error input:focus,
.field-error select:focus,
.field-error textarea:focus {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.field-error-message {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.etwaz-selected-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.etwaz-selected-item {
  align-items: center;
  background: #f3f4f6;
  border-radius: 8px;
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
}

.etwaz-selected-item span {
  font-size: 0.875rem;
}

.etwaz-remove-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0;
  width: 20px;
}

.etwaz-remove-btn:hover {
  color: var(--text);
}

.etwaz-file-input {
  background: var(--input-bg);
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
.etwaz-file-input:focus {
  border-color: #141413;
  box-shadow: 0 0 0 3px rgba(20, 20, 19, 0.08);
  outline: none;
}

.etwaz-dropzone {
  align-items: center;
  background: #f9fafb;
  border: 2px dashed #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  min-height: 200px;
  padding: 1.5rem;
  position: relative;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-dropzone:hover {
  border-color: var(--submit);
  background: rgba(150, 193, 15, 0.05);
}
.etwaz-dropzone.etwaz-dropzone-dragover {
  background: rgba(150, 193, 15, 0.1);
  border-color: var(--submit);
  border-style: solid;
}
.etwaz-dropzone.etwaz-dropzone-has-file {
  background: rgba(150, 193, 15, 0.05);
  border-color: var(--submit);
  border-style: solid;
}

.etwaz-dropzone-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  pointer-events: none;
  text-align: center;
}

.etwaz-dropzone-icon {
  font-size: 3rem;
}

.etwaz-dropzone-text {
  color: var(--muted);
  font-size: 0.875rem;
}

.etwaz-dropzone-filename {
  color: var(--submit);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.etwaz-existing-docs {
  margin-top: 1rem;
}

.etwaz-existing-docs-title {
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.etwaz-existing-doc {
  align-items: center;
  background: #f3f4f6;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding: 0.75rem;
}

.etwaz-existing-doc-info {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  min-width: 0;
}

.etwaz-existing-doc-icon {
  font-size: 1.1rem;
}

.etwaz-existing-doc-name {
  color: var(--text);
  font-size: 0.9375rem;
  word-break: break-word;
}

.etwaz-existing-doc-actions {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.etwaz-existing-doc-link {
  color: var(--submit);
  text-decoration: none;
}

.etwaz-existing-doc-delete {
  align-items: center;
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  display: flex;
  justify-content: center;
  padding: 0.25rem;
}

.etwaz-edit-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin: 0 0 1.25rem;
}

.etwaz-edit-tab {
  appearance: none;
  background: #f3f4f6;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.625rem 1rem;
  transition: background-color 200ms cubic-bezier(0.4, 0, 0.2, 1), border-color 200ms cubic-bezier(0.4, 0, 0.2, 1), color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.etwaz-edit-tab:hover {
  border-color: var(--submit);
  color: var(--text);
}

.etwaz-edit-tab:focus-visible {
  outline: 2px solid rgba(150, 193, 15, 0.4);
  outline-offset: 2px;
}

.etwaz-edit-tab.is-active {
  background: rgba(150, 193, 15, 0.14);
  border-color: var(--submit);
  color: var(--text);
}

.etwaz-project-edit-tabs {
  border-bottom: 2px solid #e5e7eb;
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.etwaz-project-edit-tabs .etwaz-project-edit-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: #6b7280;
  cursor: pointer;
  flex: 0 0 auto;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
}

.etwaz-project-edit-tabs .etwaz-project-edit-tab.is-active {
  border-bottom-color: var(--submit);
  color: var(--submit);
  font-weight: 600;
}

.etwaz-project-edit-tabs .etwaz-project-edit-tab.has-error {
  border-bottom-color: #ef4444;
  color: #ef4444;
}

.etwaz-project-edit-tabs .etwaz-project-edit-tab:focus-visible {
  outline: 2px solid rgba(150, 193, 15, 0.35);
  outline-offset: -1px;
}

.etwaz-project-edit-tabs::-webkit-scrollbar {
  height: 6px;
}

.etwaz-project-edit-tabs::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

.etwaz-edit-tab-panels {
  margin-bottom: 1rem;
}

.etwaz-edit-tab-panel {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  display: none;
  margin-bottom: 1rem;
  padding: 1.25rem 1.25rem 0.75rem;
}

.etwaz-edit-tab-panel .field {
  margin-bottom: 1.25rem;
}

.etwaz-edit-tab-panel .fields {
  gap: 1.125rem;
  margin-bottom: 1.25rem;
}

.etwaz-edit-tab-panel[hidden] {
  display: none !important;
}

.etwaz-edit-tab-panel.is-active {
  display: block;
}

.etwaz-form-step-actions {
  align-items: stretch;
  flex-direction: column;
  gap: 1rem;
}

.etwaz-form-step-actions-nav {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  width: 100%;
}

.etwaz-form-step-actions-submit {
  display: flex;
  gap: 1rem;
  justify-content: center;
  width: 100%;
}

.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  left: -9999px !important;
}

.recaptcha-notice {
  color: var(--muted);
  font-size: 0.75rem;
  margin-top: 0.5rem;
  text-align: center;
}
.recaptcha-notice a {
  color: var(--muted);
  text-decoration: none;
}
.recaptcha-notice a:hover {
  text-decoration: underline;
}

.etwaz-form-errors {
  align-items: flex-start;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-left: 4px solid #ef4444;
  border-radius: 8px;
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
}

.etwaz-form-errors-icon {
  color: #ef4444;
  flex-shrink: 0;
  margin-top: 2px;
}

.etwaz-form-errors-content {
  flex: 1;
}

.etwaz-form-errors-title {
  color: #991b1b;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.etwaz-form-errors-list {
  color: #991b1b;
  font-size: 0.875rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.etwaz-form-errors-list li {
  line-height: 1.6;
  margin-bottom: 0.25rem;
}
.etwaz-form-errors-list li:last-child {
  margin-bottom: 0;
}
.etwaz-form-errors-list li strong {
  font-weight: 600;
}

@media (max-width: 768px) {
  .etwaz-form-body {
    padding: 1.5rem;
  }
  .etwaz-form-body .etwaz-title {
    font-size: 1.75rem;
  }
  .etwaz-form-body .etwaz-subtitle {
    font-size: 0.9375rem;
  }
  .two.fields,
  .fields.two {
    grid-template-columns: 1fr;
  }
  .three.fields,
  .fields.three {
    grid-template-columns: 1fr !important;
  }
  .etwaz-select-wrapper {
    flex-direction: column;
  }
  .etwaz-dropzone {
    min-height: 150px;
    padding: 1rem;
  }
  .etwaz-dropzone-icon {
    font-size: 2rem;
  }
  .etwaz-dropzone-text {
    font-size: 0.8125rem;
  }
  .etwaz-edit-tab {
    font-size: 0.875rem;
    padding: 0.5625rem 0.875rem;
  }
  .etwaz-project-edit-tabs {
    gap: 0.75rem;
  }
  .etwaz-project-edit-tabs .etwaz-project-edit-tab {
    font-size: 0.875rem;
    padding: 0.625rem 1rem;
  }
  .etwaz-edit-tab-panel {
    padding: 1rem 1rem 0.5rem;
  }
}
@media (max-width: 640px) {
  .etwaz-form-card {
    max-width: 100%;
    border-radius: 8px;
  }
  .etwaz-form-body {
    padding: 1rem;
  }
  .etwaz-form-body .etwaz-title {
    font-size: 1.5rem;
  }
  .etwaz-form-body .etwaz-subtitle {
    font-size: 0.875rem;
  }
  .two.fields,
  .fields.two {
    grid-template-columns: 1fr;
  }
  .three.fields,
  .fields.three {
    grid-template-columns: 1fr !important;
  }
  .etwaz-select-wrapper {
    flex-direction: column;
  }
  .etwaz-dropzone {
    min-height: 120px;
    padding: 0.5rem;
  }
  .etwaz-dropzone-icon {
    font-size: 1.5rem;
  }
  .etwaz-dropzone-text {
    font-size: 0.75rem;
  }
  .etwaz-form-body-compact .etwaz-title {
    font-size: 1.375rem;
  }
  .etwaz-form-body-compact .etwaz-subtitle {
    font-size: 0.8125rem;
  }
  .etwaz-form-body-compact .field > label {
    font-size: 0.8125rem;
  }
  .etwaz-form-body-compact input,
  .etwaz-form-body-compact select,
  .etwaz-form-body-compact textarea {
    font-size: 0.8125rem !important;
  }
  .etwaz-form-body-compact .etwaz-existing-docs-title {
    font-size: 0.8125rem;
  }
  .etwaz-form-body-compact .etwaz-existing-doc-name {
    font-size: 0.8125rem;
  }
  .etwaz-edit-tabs {
    gap: 0.5rem;
  }
  .etwaz-project-edit-tabs {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .etwaz-project-edit-tabs .etwaz-project-edit-tab {
    font-size: 0.8125rem;
    padding: 0.5rem 0.875rem;
  }
  .etwaz-edit-tab {
    flex: 1 1 calc(50% - 0.5rem);
    text-align: center;
  }
}
@media (max-width: 480px) {
  .etwaz-form-body {
    padding: 0.5rem;
  }
  .etwaz-form-body .etwaz-title {
    font-size: 1.25rem;
  }
  .etwaz-form-body .etwaz-subtitle {
    font-size: 0.8125rem;
  }
  .etwaz-form-errors {
    padding: 1rem;
  }
  .etwaz-form-errors-title {
    font-size: 0.875rem;
  }
  .etwaz-form-errors-list {
    font-size: 0.8125rem;
  }
  .etwaz-form-body-compact .etwaz-title {
    font-size: 1.125rem;
  }
  .etwaz-form-body-compact .etwaz-subtitle {
    font-size: 0.75rem;
  }
  .etwaz-form-body-compact .field > label {
    font-size: 0.75rem;
  }
  .etwaz-form-body-compact input,
  .etwaz-form-body-compact select,
  .etwaz-form-body-compact textarea {
    font-size: 0.75rem !important;
  }
  .etwaz-form-body-compact .etwaz-existing-docs-title {
    font-size: 0.75rem;
  }
  .etwaz-form-body-compact .etwaz-existing-doc-name {
    font-size: 0.75rem;
  }
  .etwaz-edit-tab-panel {
    padding: 0.75rem 0.75rem 0.25rem;
  }
  .etwaz-project-edit-tabs .etwaz-project-edit-tab {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
  }
}
body.etwaz-modal-open {
  overflow: hidden;
}

.etwaz-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.etwaz-modal.etwaz-modal-active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.etwaz-modal-overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.etwaz-modal-content {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-width: 500px;
  padding: 0;
  position: relative;
  width: 90%;
  z-index: 1001;
  animation: modalSlideIn 300ms cubic-bezier(0.4, 0, 0.2, 1) ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.etwaz-modal-large {
  max-width: 700px;
}

.etwaz-modal-header {
  align-items: center;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
}

.etwaz-modal-header h2 {
  font-size: 1.5rem;
  margin: 0;
}

.etwaz-modal-close {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  padding: 0;
  width: 32px;
}

.etwaz-modal-close:hover {
  color: var(--text);
}

.etwaz-modal-body {
  max-height: 70vh;
  overflow-y: auto;
  padding: 1.5rem;
}

.etwaz-modal-content form {
  padding: 1.5rem;
}

.etwaz-modal-content .field input[type=text],
.etwaz-modal-content .field input[type=email] {
  background: var(--input-bg) !important;
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  padding: 10px 12px !important;
  width: 100% !important;
}

.etwaz-modal-v2-card--wide {
  max-width: 880px;
}

.etwaz-modal-v2-header-subtitle {
  color: #888;
  font-size: 13px;
  margin-top: 2px;
}

.etwaz-situation-v2-body {
  padding: 22px 24px;
}

.etwaz-situation-v2-pdf-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.etwaz-situation-v2-pdf-btn {
  align-items: center;
  background: #555650;
  border: none;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  text-decoration: none;
  transition: background 0.15s;
}
.etwaz-situation-v2-pdf-btn:hover {
  background: #43443f;
  color: #fff;
}
.etwaz-situation-v2-pdf-btn svg {
  flex-shrink: 0;
  height: 14px;
  width: 14px;
}

.etwaz-situation-v2-pdf-container {
  background: #f3f2ec;
  border: 1px solid rgba(20, 20, 19, 0.08);
  border-radius: 12px;
  height: 320px;
  margin-bottom: 20px;
  overflow: hidden;
}

.etwaz-situation-v2-pdf-viewer {
  border: none;
  height: 100%;
  width: 100%;
}

.etwaz-situation-v2-panel {
  background: #fafaf7;
  border: 1px solid rgba(20, 20, 19, 0.07);
  border-radius: 14px;
  padding: 22px 24px;
}

.etwaz-situation-v2-grid {
  align-items: center;
  column-gap: 16px;
  display: grid;
  grid-template-columns: 150px repeat(3, minmax(120px, 1fr));
  row-gap: 16px;
  width: 100%;
}

.etwaz-situation-v2-col-head {
  color: #141413;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.etwaz-situation-v2-row-label {
  color: #141413;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.2;
}
.etwaz-situation-v2-row-label--validated {
  padding-top: 4px;
}

.etwaz-situation-v2-input {
  background: #faf9f5;
  border: 1.5px solid rgba(20, 20, 19, 0.1);
  border-radius: 9px;
  color: #141413;
  font-family: inherit;
  font-size: 14px;
  height: 42px;
  outline: none;
  padding: 0 12px;
  transition: border-color 0.15s;
  width: 100%;
}
.etwaz-situation-v2-input:focus {
  border-color: #96c10f;
}
.etwaz-situation-v2-input[readonly] {
  background: rgba(20, 20, 19, 0.03);
  color: #555;
}

.etwaz-situation-v2-retention-cell {
  align-items: center;
  display: flex;
  gap: 10px;
}
.etwaz-situation-v2-retention-cell .etwaz-situation-v2-input {
  flex: 1;
}

.etwaz-situation-v2-retention-toggle {
  align-items: center;
  background: #555650;
  border: none;
  border-radius: 9px;
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  height: 42px;
  justify-content: center;
  transition: background 0.15s;
  width: 44px;
}
.etwaz-situation-v2-retention-toggle:hover {
  background: #43443f;
}

.etwaz-situation-v2-analysis {
  margin: 20px 0;
}

.etwaz-situation-v2-analysis-loading {
  color: #6b7280;
  font-size: 0.875rem;
  padding: 0.75rem;
  text-align: center;
}

.etwaz-situation-v2-refus-panel {
  animation: fadeInOverlay 0.2s ease;
  background: rgba(232, 80, 80, 0.05);
  border: 1px solid rgba(232, 80, 80, 0.15);
  border-radius: 12px;
  display: none;
  margin-top: 18px;
  padding: 18px 20px;
}
.etwaz-situation-v2-refus-panel.show {
  display: block;
}
.etwaz-situation-v2-refus-panel .field {
  margin-bottom: 12px;
}
.etwaz-situation-v2-refus-panel .field:last-child {
  margin-bottom: 0;
}
.etwaz-situation-v2-refus-panel label {
  color: #888;
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  margin-bottom: 6px;
}

.etwaz-situation-v2-refus-title {
  color: #b83030;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.etwaz-situation-v2-select,
.etwaz-situation-v2-textarea {
  background: #fff;
  border: 1.5px solid rgba(20, 20, 19, 0.12);
  border-radius: 9px;
  color: #141413;
  font-family: inherit;
  font-size: 13.5px;
  outline: none;
  padding: 0 12px;
  transition: border-color 0.15s;
  width: 100%;
}
.etwaz-situation-v2-select:focus,
.etwaz-situation-v2-textarea:focus {
  border-color: #e85050;
}

.etwaz-situation-v2-select {
  height: 42px;
}

.etwaz-situation-v2-textarea {
  padding: 10px 12px;
  resize: vertical;
}

.etwaz-situation-v2-footer {
  justify-content: center;
}

.etwaz-situation-v2-actions {
  display: flex;
  gap: 10px;
  padding: 18px 24px 22px;
  width: 100%;
}

.etwaz-situation-v2-btn {
  align-items: center;
  border-radius: 11px;
  cursor: pointer;
  display: inline-flex;
  flex: 1;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  gap: 8px;
  height: 42px;
  justify-content: center;
  transition: background 0.15s;
}
.etwaz-situation-v2-btn--danger {
  background: rgba(232, 80, 80, 0.06);
  border: 1px solid rgba(232, 80, 80, 0.25);
  color: #b83030;
}
.etwaz-situation-v2-btn--danger:hover {
  background: rgba(232, 80, 80, 0.12);
}
.etwaz-situation-v2-btn--warning {
  background: rgba(240, 160, 48, 0.08);
  border: 1px solid rgba(240, 160, 48, 0.3);
  color: #a05a00;
}
.etwaz-situation-v2-btn--warning:hover {
  background: rgba(240, 160, 48, 0.16);
}
.etwaz-situation-v2-btn--primary {
  background: #96c10f;
  border: none;
  box-shadow: 0 2px 8px rgba(150, 193, 15, 0.28);
  color: #141413;
}
.etwaz-situation-v2-btn--primary:hover {
  background: #7ea00c;
}
.etwaz-situation-v2-btn--danger-solid {
  background: #e85050;
  border: none;
  box-shadow: 0 2px 8px rgba(232, 80, 80, 0.3);
  color: #fff;
  flex: 2;
}
.etwaz-situation-v2-btn--danger-solid:hover {
  background: #d13f3f;
}

.etwaz-situation-v2-actions--reject .etwaz-modal-v2-btn-cancel,
.etwaz-situation-v2-actions--reject .etwaz-situation-v2-btn {
  flex: 1;
}

@media (max-width: 768px) {
  .etwaz-modal-content {
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    padding: 0;
  }
  .etwaz-modal-header {
    padding: 1rem;
  }
  .etwaz-modal-header h2 {
    font-size: 1.25rem;
  }
  .etwaz-modal-body {
    padding: 1rem;
    max-height: 65vh;
  }
  .etwaz-modal-content form {
    padding: 1rem;
  }
  .etwaz-modal-v2-card--wide {
    max-height: 90vh;
  }
  .etwaz-situation-v2-pdf-container {
    height: 240px;
  }
  .etwaz-situation-v2-panel {
    padding: 1rem;
  }
  .etwaz-situation-v2-grid {
    column-gap: 0.5rem;
    grid-template-columns: 130px repeat(3, minmax(120px, 1fr));
  }
  .etwaz-situation-v2-actions {
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .etwaz-modal-content {
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
  }
  .etwaz-modal-header {
    padding: 0.5rem;
  }
  .etwaz-modal-header h2 {
    font-size: 1.125rem;
  }
  .etwaz-modal-close {
    font-size: 1.75rem;
    width: 28px;
  }
  .etwaz-modal-body {
    padding: 0.5rem;
    max-height: 70vh;
  }
  .etwaz-modal-content form {
    padding: 0.5rem;
  }
  .etwaz-modal-v2-card--wide {
    max-height: 95vh;
  }
  .etwaz-situation-v2-pdf-container {
    height: 200px;
  }
  .etwaz-situation-v2-panel {
    padding: 0.5rem;
  }
  .etwaz-situation-v2-grid {
    gap: 0.5rem;
    grid-template-columns: 1fr;
  }
  .etwaz-situation-v2-col-head {
    display: none;
  }
  .etwaz-situation-v2-row-label {
    margin-top: 0.25rem;
  }
  .etwaz-situation-v2-grid > div:empty {
    display: none;
  }
  .etwaz-situation-v2-actions {
    flex-direction: column;
    gap: 0.25rem;
  }
  .etwaz-situation-v2-actions .etwaz-situation-v2-btn {
    font-size: 0.875rem;
  }
}
@keyframes fadeInOverlay {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUpCard {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.etwaz-modal--v2 {
  padding: 16px;
}
.etwaz-modal--v2.etwaz-modal-active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.etwaz-modal--v2 .etwaz-modal-overlay {
  animation: fadeInOverlay 0.2s ease;
  backdrop-filter: blur(6px);
  background: rgba(20, 20, 19, 0.38);
}

.etwaz-modal-v2-card {
  animation: slideUpCard 0.25s ease;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(20, 20, 19, 0.18);
  display: flex;
  flex-direction: column;
  max-height: 92vh;
  max-width: 860px;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1001;
}

.etwaz-modal-v2-header {
  align-items: center;
  border-bottom: 1px solid rgba(20, 20, 19, 0.07);
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  padding: 20px 24px 18px;
}
.etwaz-modal-v2-header-left {
  align-items: center;
  display: flex;
  gap: 11px;
}
.etwaz-modal-v2-header h2 {
  color: #141413;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

.etwaz-modal-v2-icon {
  align-items: center;
  background: rgba(150, 193, 15, 0.12);
  border-radius: 9px;
  color: #96c10f;
  display: flex;
  flex-shrink: 0;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.etwaz-modal-v2-close {
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: #bbb;
  cursor: pointer;
  display: flex;
  height: 32px;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  width: 32px;
}
.etwaz-modal-v2-close:hover {
  background: rgba(20, 20, 19, 0.07);
  color: #444;
}

.etwaz-modal-v2-form {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.etwaz-modal-v2-body {
  flex: 1;
  overflow-y: auto;
  padding: 22px 24px 0;
}
.etwaz-modal-v2-body input[type=text].etwaz-select,
.etwaz-modal-v2-body input[type=number].etwaz-select,
.etwaz-modal-v2-body input[type=date].etwaz-select {
  background: #fff;
  border: 1.5px solid rgba(20, 20, 19, 0.12);
  border-radius: 9px;
  color: #141413;
  font-size: 13.5px;
  height: 40px;
  outline: none;
  padding: 0 12px;
  transition: border-color 0.15s;
  width: 100%;
}
.etwaz-modal-v2-body input[type=text].etwaz-select:focus,
.etwaz-modal-v2-body input[type=number].etwaz-select:focus,
.etwaz-modal-v2-body input[type=date].etwaz-select:focus {
  border-color: #96c10f;
}
.etwaz-modal-v2-body input[type=text].etwaz-select::placeholder,
.etwaz-modal-v2-body input[type=number].etwaz-select::placeholder,
.etwaz-modal-v2-body input[type=date].etwaz-select::placeholder {
  color: #ccc;
}

.etwaz-modal-v2-grid-2 {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 18px;
}

.etwaz-modal-v2-field {
  margin-bottom: 18px;
}
.etwaz-modal-v2-field > label {
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.etwaz-modal-v2-optional {
  color: #ccc;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.etwaz-modal-v2-section-label {
  color: #888;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.etwaz-modal-v2-context {
  background: #faf9f5;
  border: 1px solid rgba(20, 20, 19, 0.07);
  border-radius: 12px;
  margin-bottom: 18px;
  padding: 14px 16px;
}

.etwaz-modal-v2-context-title {
  color: #141413;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.etwaz-modal-v2-context-meta {
  color: #7a7a73;
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
}

.etwaz-modal-v2-tva-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 16px;
}

.etwaz-modal-v2-ttc-row {
  align-items: center;
  background: rgba(150, 193, 15, 0.06);
  border: 1px solid rgba(150, 193, 15, 0.15);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  padding: 13px 16px;
}
.etwaz-modal-v2-ttc-row-label {
  color: #555;
  font-size: 13px;
  font-weight: 600;
}
.etwaz-modal-v2-ttc-row-hint {
  color: #aaa;
  font-size: 12px;
  font-weight: 400;
  margin-left: 4px;
}
.etwaz-modal-v2-ttc-row-value {
  color: #141413;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.etwaz-modal-v2-footer {
  border-top: 1px solid rgba(20, 20, 19, 0.07);
  display: flex;
  flex-shrink: 0;
  gap: 10px;
  margin-top: 4px;
  padding: 18px 24px 22px;
}

.etwaz-modal-v2-btn-cancel {
  background: rgba(20, 20, 19, 0.07);
  border: none;
  border-radius: 10px;
  color: #555;
  cursor: pointer;
  flex: 1;
  font-size: 13.5px;
  font-weight: 600;
  height: 42px;
  transition: background 0.15s;
}
.etwaz-modal-v2-btn-cancel:hover {
  background: rgba(20, 20, 19, 0.12);
}

.etwaz-modal-v2-btn-submit {
  align-items: center;
  background: var(--ink);
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(20, 20, 19, 0.28);
  color: var(--panel);
  cursor: pointer;
  display: flex;
  flex: 1;
  font-size: 13.5px;
  font-weight: 600;
  gap: 7px;
  height: 42px;
  justify-content: center;
  transition: background 0.15s;
}
.etwaz-modal-v2-btn-submit:hover {
  background: var(--ink);
}

.etwaz-dz2 {
  cursor: pointer;
}

.etwaz-dz2-idle {
  background: #faf9f5;
  border: 1.5px dashed rgba(20, 20, 19, 0.13);
  border-radius: 10px;
  padding: 22px 16px;
  text-align: center;
  transition: all 0.15s;
}
.etwaz-dz2--drag .etwaz-dz2-idle {
  background: rgba(150, 193, 15, 0.04);
  border-color: #96c10f;
}

.etwaz-dz2-upload-icon {
  align-items: center;
  background: rgba(150, 193, 15, 0.1);
  border-radius: 10px;
  color: #96c10f;
  display: flex;
  height: 38px;
  justify-content: center;
  margin: 0 auto 10px;
  width: 38px;
}

.etwaz-dz2-text {
  color: #555;
  font-size: 13.5px;
  font-weight: 500;
}

.etwaz-dz2-link {
  color: #96c10f;
  font-weight: 600;
}

.etwaz-dz2-hint {
  color: #ccc;
  font-size: 12px;
  margin-top: 3px;
}

.etwaz-dz2-selected {
  align-items: center;
  background: rgba(150, 193, 15, 0.06);
  border: 1px solid rgba(150, 193, 15, 0.2);
  border-radius: 10px;
  display: flex;
  gap: 10px;
  padding: 12px 14px;
}

.etwaz-dz2-file-icon {
  align-items: center;
  background: rgba(150, 193, 15, 0.12);
  border-radius: 8px;
  color: #96c10f;
  display: flex;
  flex-shrink: 0;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.etwaz-dz2-file-info {
  flex: 1;
  min-width: 0;
}

.etwaz-dz2-file-name {
  color: #141413;
  font-size: 13.5px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.etwaz-dz2-file-size {
  color: #aaa;
  font-size: 12px;
  margin-top: 1px;
}

.etwaz-dz2-remove {
  background: transparent;
  border: none;
  border-radius: 6px;
  color: #ccc;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  padding: 4px;
  transition: color 0.15s;
}
.etwaz-dz2-remove:hover {
  color: #e85050;
}

@media (max-width: 480px) {
  .etwaz-modal-content {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
  .etwaz-modal-header h2 {
    font-size: 1rem;
  }
  .etwaz-modal-body {
    padding: 0.25rem;
    max-height: 75vh;
  }
  .etwaz-situation-v2-pdf-container {
    height: 180px;
  }
  .etwaz-modal--v2 {
    padding: 0;
  }
  .etwaz-modal-v2-card {
    border-radius: 0;
    max-height: 100vh;
    max-width: none;
    min-height: 100vh;
  }
  .etwaz-modal-v2-header,
  .etwaz-modal-v2-body,
  .etwaz-modal-v2-footer {
    padding-left: 16px;
    padding-right: 16px;
  }
  .etwaz-modal-v2-header {
    padding-top: 18px;
    padding-bottom: 16px;
  }
  .etwaz-modal-v2-body {
    padding-top: 18px;
  }
  .etwaz-modal-v2-grid-2,
  .etwaz-modal-v2-tva-grid {
    grid-template-columns: 1fr;
  }
  .etwaz-modal-v2-ttc-row,
  .etwaz-modal-v2-footer,
  .etwaz-dz2-selected {
    align-items: stretch;
    flex-direction: column;
  }
  .etwaz-modal-v2-ttc-row {
    gap: 8px;
  }
  .etwaz-modal-v2-footer {
    padding-top: 16px;
    padding-bottom: 18px;
  }
  .etwaz-modal-v2-btn-cancel,
  .etwaz-modal-v2-btn-submit {
    width: 100%;
  }
  .etwaz-dz2-selected {
    gap: 12px;
  }
  .etwaz-dz2-remove {
    align-self: flex-end;
  }
}
.etwaz-project-detail {
  margin: 0 auto;
  max-width: 1400px;
  padding-bottom: 2rem;
}

@media (min-width: 1400px) {
  #lot-situations-card {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}
.etwaz-project-header {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.etwaz-project-header-info {
  align-items: center;
  display: flex;
  flex: 1;
  gap: 1.5rem;
  min-width: 0;
}

.etwaz-project-header-title-row {
  align-items: center;
  display: flex;
  flex: 1;
  gap: 1rem;
  justify-content: space-between;
  min-width: 0;
}

.etwaz-project-header-actions {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 1rem;
}

.etwaz-project-header-image {
  flex-shrink: 0;
  height: 80px;
  overflow: hidden;
  width: 120px;
}

.etwaz-project-header-image a {
  display: block;
  height: 100%;
  width: 100%;
  cursor: pointer;
}

.etwaz-project-header-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.etwaz-project-header-title h1 {
  color: var(--text);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

.etwaz-project-owner-meta {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 0.55rem;
}

.etwaz-project-owner-meta-label,
.etwaz-project-owner-meta-name {
  font-size: 0.9rem;
  line-height: 1.4;
}

.etwaz-project-owner-meta-label {
  font-weight: 500;
}

.etwaz-project-owner-meta-name {
  color: var(--text);
  font-weight: 600;
}

.etwaz-project-price-toggle {
  align-items: center;
  color: var(--muted);
  display: flex;
  gap: 0.5rem;
  margin-left: auto;
}

.etwaz-project-price-label {
  color: var(--muted);
  font-size: 0.8125rem;
}

.etwaz-price-toggle {
  display: inline-block;
  height: 20px;
  position: relative;
  width: 36px;
}

#price-toggle {
  height: 0;
  opacity: 0;
  width: 0;
}

#price-toggle + span {
  background-color: #ccc;
  border-radius: 9999px;
  cursor: pointer;
  inset: 0;
  position: absolute;
  transition: 0.3s;
}

#price-toggle + span:before {
  background-color: #ffffff;
  border-radius: 50%;
  bottom: 3px;
  content: "";
  height: 14px;
  left: 3px;
  position: absolute;
  transition: 0.3s;
  width: 14px;
}

#price-toggle:checked + span {
  background-color: var(--submit, #96c10f);
}

#price-toggle:checked + span:before {
  transform: translateX(16px);
}

.etwaz-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  margin-bottom: 1.5rem;
  padding: 2rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-card h2 {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}
.etwaz-card h2.etwaz-card-title,
.etwaz-card h3.etwaz-card-title {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}
.etwaz-card .etwaz-card-section-header {
  align-items: center;
  display: flex;
  margin-bottom: 1rem;
  margin-left: -2rem;
}
.etwaz-card .etwaz-card-section-header:last-child {
  margin-bottom: 0;
}
.etwaz-card .etwaz-progress-header .etwaz-card-section-header,
.etwaz-card .etwaz-situations-header .etwaz-card-section-header {
  margin-bottom: 0;
}
.etwaz-card .etwaz-card-section-header .etwaz-progress-title {
  margin-left: 1rem;
}
.etwaz-card .etwaz-card-title-icon {
  align-items: center;
  background: var(--submit);
  color: #ffffff;
  display: flex;
  flex-shrink: 0;
  height: 2.25rem;
  justify-content: center;
  width: 2.25rem;
}
.etwaz-card .etwaz-card-title-icon svg {
  height: 1.125rem;
  width: 1.125rem;
}
.etwaz-card .etwaz-card-section-header .etwaz-card-title {
  margin-left: 1rem;
}
.etwaz-card .etwaz-card-section-header-with-action {
  align-items: center;
  justify-content: space-between;
  margin-left: 0;
  margin-right: -2rem;
}
.etwaz-card .etwaz-card-section-header-inner {
  align-items: center;
  display: flex;
  margin-left: -2rem;
}
.etwaz-card .etwaz-card-section-header-with-action .etwaz-card-title {
  margin-left: 1rem;
}
.etwaz-card .etwaz-btn-modifier {
  background: var(--submit) !important;
  border: none !important;
  border-radius: 9999px;
  color: #ffffff !important;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  margin-right: 1rem;
  padding: 0.5rem 1.25rem !important;
  text-decoration: none !important;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-card .etwaz-btn-modifier:hover {
  background: var(--submit-hover) !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.etwaz-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.etwaz-progress-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.etwaz-progress-header {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.etwaz-progress-title {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.etwaz-progress-right {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.5rem;
  margin-right: 8.5rem;
  max-width: 50%;
  min-width: 120px;
}

.etwaz-progress-bar-wrapper {
  position: relative;
}

.etwaz-progress-percentage {
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 600;
  position: absolute;
  top: -20px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.etwaz-progress-bar {
  background: #f3f4f6;
  border-radius: 9999px;
  height: 14px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.etwaz-progress-fill {
  background: var(--submit);
  border-radius: 9999px;
  box-shadow: 0 2px 4px rgba(150, 193, 15, 0.3);
  height: 100%;
  position: relative;
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.etwaz-progress-amounts {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.etwaz-progress-amount-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.etwaz-progress-amount-item:first-child {
  align-items: flex-start;
}
.etwaz-progress-amount-item:nth-child(2) {
  align-items: center;
}
.etwaz-progress-amount-item:last-child {
  align-items: flex-end;
}

.etwaz-progress-amount-label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 400;
}

.etwaz-progress-market-value {
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 700;
}

.etwaz-progress-paid-value {
  color: var(--text);
  font-size: 0.875rem;
}

.etwaz-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  flex-wrap: wrap;
  gap: 1rem;
}

.etwaz-pagination-info {
  color: var(--muted);
  font-size: 0.875rem;
}

.etwaz-pagination-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.etwaz-pagination-btn {
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.etwaz-pagination-btn:hover:not(.etwaz-pagination-btn-disabled) {
  background: var(--submit);
  color: white;
  border-color: var(--submit);
}
.etwaz-pagination-btn.etwaz-pagination-btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.etwaz-pagination-numbers {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.etwaz-pagination-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.5rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-pagination-number:hover:not(.etwaz-pagination-number-active) {
  background: #f3f4f6;
  border-color: var(--submit);
}
.etwaz-pagination-number.etwaz-pagination-number-active {
  background: var(--submit);
  color: white;
  border-color: var(--submit);
  font-weight: 600;
}

.etwaz-pagination-ellipsis {
  padding: 0 0.5rem;
  color: var(--muted);
  font-size: 0.875rem;
}

.etwaz-progress-paid-value {
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
}

.etwaz-progress-balance-value {
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 700;
  text-align: right;
}

.etwaz-progress-info {
  display: flex;
  justify-content: space-between;
}

.etwaz-progress-label {
  color: var(--text);
  font-weight: 600;
}

.etwaz-progress-value {
  color: var(--muted);
  font-size: 0.875rem;
}

.etwaz-collapsible-card {
  padding: 0;
}

.etwaz-collapsible-header {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  user-select: none;
}

.etwaz-collapsible-header h2 {
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.etwaz-collapsible-icon {
  color: var(--muted);
  font-size: 0.875rem;
  transition: transform 0.2s ease;
}

.etwaz-collapsible-content {
  border-top: 1px solid var(--border);
  padding: 1.5rem;
}

.etwaz-lots-list {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin-top: 1.5rem;
}

.etwaz-lot-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  display: block;
  padding: 1.5rem;
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-lot-card:hover {
  border-color: rgba(150, 193, 15, 0.3);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.etwaz-lot-card-header {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.etwaz-lot-card-header h3 {
  color: var(--text);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.etwaz-lot-company-logo {
  border-radius: 8px;
  height: 40px;
  object-fit: cover;
  width: 40px;
}

.etwaz-lot-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.etwaz-lot-company-name {
  color: var(--muted);
  font-size: 0.875rem;
  margin: 0;
}

.etwaz-lot-stats {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.etwaz-lot-stats span {
  color: var(--text);
  font-size: 0.875rem;
}

.etwaz-lot-progress-section {
  margin-bottom: 2rem;
}

.etwaz-lot-progress-bar {
  border-radius: 8px;
  display: flex;
  height: 60px;
  overflow: hidden;
  width: 100%;
}

.etwaz-lot-progress-segment {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.etwaz-lot-progress-segment:not(:last-child) {
  border-right: 2px solid #ffffff;
}

.etwaz-lot-progress-market {
  background: #3b82f6;
}

.etwaz-lot-progress-paid {
  background: #10b981;
}

.etwaz-lot-progress-balance {
  background: #f59e0b;
}

.etwaz-lot-progress-segment-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem;
  text-align: center;
  z-index: 2;
}

.etwaz-lot-progress-label {
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.etwaz-lot-progress-value {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.etwaz-lot-header {
  margin-bottom: 2rem;
}

.etwaz-lot-header-info h2 {
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.etwaz-lot-company-info {
  align-items: center;
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.etwaz-lot-company-logo-large {
  border-radius: 8px;
  height: 60px;
  object-fit: cover;
  width: 60px;
}

.etwaz-lot-company-name-large {
  color: var(--text);
  font-size: 1.125rem;
  font-weight: 600;
}

.etwaz-info-section {
  margin-bottom: 2rem;
}
.etwaz-info-section:last-child {
  margin-bottom: 0;
}

.etwaz-info-section-title {
  color: var(--text);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.etwaz-info-docs-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

.etwaz-info-doc-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: var(--submit);
  display: block;
  overflow: hidden;
  padding: 1rem;
  text-decoration: none;
  transition: border-color 200ms cubic-bezier(0.4, 0, 0.2, 1), background-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
  word-break: break-word;
}
.etwaz-info-doc-card:hover {
  background-color: rgba(150, 193, 15, 0.06);
  border-color: rgba(150, 193, 15, 0.4);
}

.etwaz-info-row {
  align-items: flex-start;
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.etwaz-info-row:last-child {
  margin-bottom: 0;
}

.etwaz-info-row-label {
  color: var(--submit);
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 600;
  min-width: 10rem;
}

.etwaz-info-row-content {
  align-items: flex-start;
  color: var(--text);
  display: grid;
  flex: 1;
  gap: 0.25rem 2rem;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  min-width: 0;
}

.etwaz-info-field {
  display: block;
}

.etwaz-info-field + .etwaz-info-field::before {
  content: none;
  margin: 0;
}

.etwaz-info-doc-link {
  color: var(--submit);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-info-doc-link:hover {
  color: var(--submit-hover, #96c10f);
}

.etwaz-info-docs-inline {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.etwaz-info-docs-inline .etwaz-info-doc-link::after {
  content: ",";
  margin-right: 0.35rem;
}

.etwaz-info-docs-inline .etwaz-info-doc-link:last-of-type::after {
  content: "";
  margin-right: 0;
}

.etwaz-info-permit-files {
  grid-column: 1/-1;
  width: 100%;
}

.etwaz-info-doc-add-btn {
  align-items: center;
  background: var(--submit);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 300;
  height: 2rem;
  justify-content: center;
  line-height: 2rem;
  padding: 0;
  text-align: center;
  transition: background 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 2rem;
}
.etwaz-info-doc-add-btn:hover {
  background: var(--submit-hover, #96c10f);
}

.etwaz-docs-dropzone-wrapper {
  margin-bottom: 1.5rem;
}

.etwaz-docs-existing-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.etwaz-docs-existing-list {
  margin-bottom: 1rem;
}

.etwaz-docs-existing-item {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
  background: #f3f4f6;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}

.etwaz-docs-delete-btn {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.25rem;
}
.etwaz-docs-delete-btn:hover {
  color: #dc2626;
}

.etwaz-documents-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.etwaz-document-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-document-item:hover {
  border-color: rgba(150, 193, 15, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.etwaz-document-link {
  align-items: center;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-document-link:hover {
  color: var(--submit);
}

.etwaz-document-size {
  color: var(--muted);
  font-size: 0.875rem;
}

@media (max-width: 968px) {
  .etwaz-info-row-content {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}
@media (max-width: 768px) {
  .etwaz-project-detail {
    padding-bottom: 1.5rem;
  }
  .etwaz-project-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .etwaz-project-header-actions {
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
    order: -1;
    width: 100%;
  }
  .etwaz-project-header-title h1 {
    font-size: 1.75rem;
  }
  .etwaz-project-owner-meta-label,
  .etwaz-project-owner-meta-name {
    font-size: 0.875rem;
  }
  .etwaz-project-header-image {
    height: 60px;
    width: 90px;
  }
  .etwaz-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  .etwaz-collapsible-header h2 {
    font-size: 1.125rem;
  }
  .etwaz-lots-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .etwaz-lot-card {
    padding: 1rem;
  }
  .etwaz-lot-card-header h3 {
    font-size: 1rem;
  }
  .etwaz-lot-progress-bar {
    height: 50px;
  }
  .etwaz-lot-progress-segment-content {
    padding: 0.375rem;
  }
  .etwaz-lot-progress-label {
    font-size: 0.625rem;
  }
  .etwaz-lot-progress-value {
    font-size: 0.8125rem;
  }
  .etwaz-lot-header-info h2 {
    font-size: 1.25rem;
  }
  .etwaz-info-section-title {
    font-size: 1rem;
  }
  .etwaz-info-docs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .etwaz-pagination {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .etwaz-pagination-controls {
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .etwaz-project-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .etwaz-project-header-info {
    align-items: center;
    flex-direction: row;
    width: 100%;
  }
  .etwaz-project-header-title-row {
    align-items: center;
    width: 100%;
  }
  .etwaz-project-price-label {
    font-size: 0.75rem;
  }
  .etwaz-price-toggle {
    height: 18px;
    width: 32px;
  }
  #price-toggle + span:before {
    height: 12px;
    width: 12px;
  }
  #price-toggle:checked + span:before {
    transform: translateX(14px);
  }
  .etwaz-project-header-title h1 {
    font-size: 1.5rem;
  }
  .etwaz-project-owner-meta {
    margin-top: 0.45rem;
  }
  .etwaz-project-header-image {
    height: 50px;
    width: 75px;
  }
  .etwaz-card {
    padding: 1rem;
    margin-bottom: 0.5rem;
  }
  .etwaz-collapsible-header {
    padding: 1rem;
  }
  .etwaz-collapsible-header h2 {
    font-size: 1rem;
  }
  .etwaz-collapsible-content {
    padding: 1rem;
  }
  .etwaz-info-row {
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
  }
  .etwaz-info-row-label {
    font-size: 0.875rem;
    min-width: 0;
  }
  .etwaz-info-row-content {
    flex-direction: column;
    display: flex;
    font-size: 0.875rem;
    gap: 0.25rem;
  }
  .etwaz-info-field + .etwaz-info-field::before {
    content: none;
  }
  .etwaz-info-docs-inline {
    align-items: flex-start;
    flex-direction: column;
  }
  .etwaz-lots-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .etwaz-lot-card {
    padding: 0.5rem;
  }
  .etwaz-lot-card-header h3 {
    font-size: 0.9375rem;
  }
  .etwaz-lot-progress-bar {
    height: 45px;
  }
  .etwaz-lot-progress-segment-content {
    padding: 0.25rem;
  }
  .etwaz-lot-progress-label {
    font-size: 0.5625rem;
  }
  .etwaz-lot-progress-value {
    font-size: 0.75rem;
  }
  .etwaz-lot-header-info h2 {
    font-size: 1.125rem;
  }
  .etwaz-info-section-title {
    font-size: 0.9375rem;
  }
  .etwaz-info-docs-grid {
    grid-template-columns: 1fr;
  }
  .etwaz-pagination {
    flex-direction: column;
    align-items: stretch;
  }
  .etwaz-pagination-btn {
    font-size: 0.8125rem;
    padding: 0.4375rem 0.875rem;
  }
  .etwaz-pagination-number {
    min-width: 1.75rem;
    height: 1.75rem;
    font-size: 0.8125rem;
  }
  .etwaz-progress-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
  }
  .etwaz-progress-header .etwaz-card-section-header {
    justify-content: flex-start;
    margin-left: 0;
    margin-bottom: 0.5rem;
  }
  .etwaz-card-section-header .etwaz-progress-title {
    margin-left: 0.5rem;
  }
  .etwaz-progress-right {
    margin-right: 0;
    max-width: 100%;
    width: 100%;
  }
  .etwaz-progress-bar-wrapper {
    margin-top: 0.5rem;
  }
  .etwaz-card .etwaz-card-section-header {
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
    margin-left: 0;
  }
  .etwaz-card .etwaz-card-section-header .etwaz-card-title-icon,
  .etwaz-situations-header .etwaz-card-section-header .etwaz-card-title-icon {
    margin-left: 0;
  }
  .etwaz-card .etwaz-card-section-header .etwaz-card-title-icon svg,
  .etwaz-situations-header .etwaz-card-section-header .etwaz-card-title-icon svg {
    margin-left: 0;
  }
  .etwaz-card .etwaz-card-section-header-inner {
    flex-wrap: wrap;
    margin-left: 0;
    margin-bottom: 0.5rem;
  }
  .etwaz-card-section-header-with-action {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-right: 0;
  }
  .etwaz-card .etwaz-btn-modifier {
    margin-right: 3rem;
  }
  .etwaz-progress-amount-label {
    font-size: 0.6875rem;
  }
  .etwaz-progress-market-value,
  .etwaz-progress-paid-value,
  .etwaz-progress-balance-value {
    font-size: 0.8125rem;
  }
}
@media (max-width: 480px) {
  .etwaz-project-header-title h1 {
    font-size: 1.25rem;
  }
  .etwaz-project-owner-meta-name {
    white-space: normal;
  }
  .etwaz-card {
    padding: 0.5rem;
  }
  .etwaz-collapsible-header {
    padding: 0.5rem;
  }
  .etwaz-collapsible-header h2 {
    font-size: 0.9375rem;
  }
  .etwaz-collapsible-content {
    padding: 0.5rem;
  }
  .etwaz-lot-progress-bar {
    height: 40px;
  }
  .etwaz-lot-progress-label {
    font-size: 0.5rem;
  }
  .etwaz-lot-progress-value {
    font-size: 0.6875rem;
  }
}
.etwaz-card-situations {
  margin: 0 auto;
  max-width: 1400px;
}

.etwaz-section-card {
  background: #fff;
  border: 1px solid rgba(20, 20, 19, 0.07);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(20, 20, 19, 0.05);
  margin-bottom: 16px;
  transition: box-shadow 0.2s;
}
.etwaz-section-card:hover {
  box-shadow: 0 2px 10px rgba(20, 20, 19, 0.09);
}

.etwaz-section-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(20, 20, 19, 0.06);
}

.etwaz-section-card-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.etwaz-section-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #141413;
  letter-spacing: -0.01em;
  margin: 0;
}

.etwaz-section-card:not(.etwaz-section-card--fixed) .etwaz-section-card-header {
  cursor: pointer;
}

.etwaz-section-card-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 16px;
  font-weight: 700;
  height: 22px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  width: 18px;
}
.etwaz-section-card-toggle:hover {
  color: var(--text);
}
.etwaz-section-card-toggle .etwaz-sidebar-toggle-icon {
  transform: rotate(-90deg);
}

.etwaz-section-card.is-collapsed > .etwaz-section-card-header .etwaz-section-card-toggle .etwaz-sidebar-toggle-icon {
  transform: rotate(-180deg);
}

.etwaz-section-card.is-collapsed > :not(.etwaz-section-card-header):not(.etwaz-hidden-csrf) {
  display: none !important;
}

.etwaz-section-card.is-collapsed .etwaz-section-card-header {
  border-bottom: 0;
}

.etwaz-section-card-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.etwaz-section-card-body {
  padding: 22px 24px;
}

.etwaz-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 500;
}

.etwaz-status-badge--active {
  background: #edf7e0;
  color: var(--submit, #96c10f);
}

.etwaz-status-badge--draft {
  background: #f0f0ee;
  color: #666662;
}

.etwaz-status-badge--completed {
  background: #e8f0fe;
  color: #1a5cb8;
}

.etwaz-status-badge--archived {
  background: rgba(20, 20, 19, 0.07);
  color: #888;
}

.etwaz-status-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--submit, #96c10f);
}

.etwaz-status-badge--archived .etwaz-status-badge-dot {
  background: #aaa;
}

.etwaz-status-badge--draft .etwaz-status-badge-dot {
  background: #aaaaaa;
}

.etwaz-status-badge--completed .etwaz-status-badge-dot {
  background: #3b7aff;
}

.etwaz-project-header-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}

.etwaz-project-header-v2-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.etwaz-project-photo {
  width: 68px;
  height: 68px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.etwaz-project-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.etwaz-project-photo-placeholder {
  width: 68px;
  height: 68px;
  border-radius: 12px;
  background: linear-gradient(135deg, #c8d8a0 0%, #a8c070 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 700;
  color: rgba(20, 20, 19, 0.5);
  letter-spacing: -0.02em;
}

.etwaz-project-header-v2-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.etwaz-project-header-v2-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}

.etwaz-price-val {
  font-family: "IBM Plex Mono", monospace;
}

.etwaz-project-header-v2-title {
  font-family: "Fraunces", serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #141413;
  margin: 0;
}

.etwaz-project-header-v2-meta {
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.etwaz-project-header-v2-meta-sep {
  color: #ddd;
}

.etwaz-project-header-v2-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.etwaz-project-header-v2--lot {
  align-items: flex-end;
}

.etwaz-project-header-v2-left--lot {
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.etwaz-project-header-v2-meta--lot {
  gap: 5px;
  margin: 0;
}

.etwaz-project-header-v2-meta--lot .etwaz-project-header-v2-meta-sep {
  color: currentColor;
}

.etwaz-project-header-v2-lot-main {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
}

.etwaz-project-header-v2--lot .etwaz-project-photo,
.etwaz-project-header-v2--lot .etwaz-project-photo-placeholder {
  border-radius: 10px;
  height: 44px;
  width: 44px;
}

.etwaz-project-header-v2--lot .etwaz-project-photo-placeholder {
  font-size: 18px;
}

.etwaz-project-header-v2--lot .etwaz-project-header-v2-title-row {
  gap: 12px;
  margin-bottom: 0;
}

.etwaz-btn-v2 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 14px;
  border-radius: 9px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: -0.01em;
  transition: background 0.15s, box-shadow 0.15s;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

.etwaz-btn-v2--primary {
  background: var(--ink);
  color: var(--panel);
  box-shadow: 0 2px 8px rgba(20, 20, 19, 0.28);
}
.etwaz-btn-v2--primary:hover {
  background: var(--ink);
  color: var(--panel);
}

.etwaz-btn-v2--secondary {
  background: rgba(20, 20, 19, 0.06);
  color: #444;
}
.etwaz-btn-v2--secondary:hover {
  background: rgba(20, 20, 19, 0.1);
}

.etwaz-btn-v2--ghost {
  background: var(--ink);
  color: var(--panel);
  border: none;
}
.etwaz-btn-v2--ghost:hover {
  background: var(--ink);
  color: var(--panel);
}

.etwaz-btn-v2--small {
  height: 30px;
  padding: 0 11px;
  font-size: 12px;
  border-radius: 9px;
}

.etwaz-toggle-v2 {
  align-items: center;
  background: var(--panel);
  border: 1px solid rgba(20, 20, 19, 0.08);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(20, 20, 19, 0.04);
  cursor: pointer;
  display: flex;
  gap: 2px;
  padding: 3px;
  position: relative;
  z-index: 2;
  appearance: none;
  -webkit-appearance: none;
}
.etwaz-toggle-v2:focus-visible {
  outline: 2px solid rgba(150, 193, 15, 0.45);
  outline-offset: 2px;
}

.etwaz-toggle-v2-label {
  border-radius: 9px;
  color: #aaa;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  transition: background 0.15s, color 0.15s;
}

.etwaz-toggle-v2-label--active {
  background: var(--ink);
  color: var(--panel);
  font-weight: 600;
}

.etwaz-progress-v2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.etwaz-progress-v2-bar-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.etwaz-progress-v2-bar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.etwaz-progress-v2-bar-label {
  font-size: 13px;
  color: #888;
}

.etwaz-progress-v2-pct {
  font-size: 13px;
  font-weight: 700;
  color: var(--submit, #96c10f);
}

.etwaz-progress-v2-track {
  height: 8px;
  background: rgba(20, 20, 19, 0.07);
  border-radius: 4px;
  overflow: hidden;
}

.etwaz-progress-v2-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--submit, #96c10f), var(--submit, #96c10f));
  border-radius: 4px;
  transition: width 0.6s ease;
}

.etwaz-project-detail .etwaz-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 0;
}

.etwaz-kpi-card {
  background: var(--panel);
  border: 1px solid rgba(20, 20, 19, 0.07);
  border-radius: 12px;
  padding: 16px 18px;
  text-align: center;
}

.etwaz-kpi-card--accent {
  background: var(--panel);
  border-color: rgba(20, 20, 19, 0.07);
}

.etwaz-kpi-value {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 4px;
}

.etwaz-kpi-card--accent .etwaz-kpi-value {
  color: var(--ink);
}

.etwaz-kpi-card--accent .etwaz-kpi-label {
  color: #aaa;
  opacity: 1;
}

.etwaz-kpi-label {
  font-size: 11px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.etwaz-lots-table-v2 {
  display: flex;
  flex-direction: column;
}

.etwaz-lots-table-v2-head {
  display: grid;
  grid-template-columns: 52px 1.4fr 1.8fr 1fr 1fr 1fr 40px;
  padding: 0 22px;
  height: 36px;
  align-items: center;
  background: #faf9f5;
  border-bottom: 1px solid rgba(20, 20, 19, 0.06);
}

.etwaz-lots-table-v2-head-cell {
  font-size: 11px;
  font-weight: 600;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.etwaz-lots-table-v2-row {
  display: grid;
  grid-template-columns: 52px 1.4fr 1.8fr 1fr 1fr 1fr 40px;
  padding: 0 22px;
  min-height: 58px;
  align-items: center;
  border-bottom: 1px solid rgba(20, 20, 19, 0.05);
  background: #fff;
  cursor: pointer;
  transition: background 0.12s;
}
.etwaz-lots-table-v2-row:hover {
  background: #f7f7f3;
}
.etwaz-lots-table-v2-row:last-of-type {
  border-bottom: none;
}

.etwaz-lots-table-v2-lot-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--submit, #96c10f);
}

.etwaz-lots-table-v2-nature {
  font-size: 13.5px;
  font-weight: 500;
  color: #141413;
}

.etwaz-lots-table-v2-company-cell {
  display: flex;
  align-items: center;
  gap: 9px;
}

.etwaz-lots-table-v2-avatar {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(20, 20, 19, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #555;
  flex-shrink: 0;
  overflow: hidden;
}
.etwaz-lots-table-v2-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.etwaz-lots-table-v2-company-name {
  font-size: 13.5px;
  color: #141413;
  line-height: 1.3;
}

.etwaz-lots-table-v2-company-email {
  font-size: 11.5px;
  color: #bbb;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.etwaz-lots-table-v2-amount {
  font-size: 13.5px;
  font-weight: 500;
  color: #141413;
}

.etwaz-lots-table-v2-amount--addendum {
  color: var(--amber);
  font-weight: 500;
}

.etwaz-lots-table-v2-amount--zero {
  color: #ccc;
  font-weight: 400;
}

.etwaz-lots-table-v2-amount--situation {
  color: var(--submit, #96c10f);
  font-weight: 500;
}

.etwaz-lots-table-v2-chevron {
  display: flex;
  justify-content: flex-end;
  color: #ccc;
}

.etwaz-lots-table-v2-pending-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--submit, #96c10f);
  margin-left: 5px;
  vertical-align: middle;
  flex-shrink: 0;
}

.etwaz-lots-table-v2-total {
  display: grid;
  grid-template-columns: 52px 1.4fr 1.8fr 1fr 1fr 1fr 40px;
  padding: 14px 22px;
  align-items: center;
  background: #f5f4f0;
  border-top: 1px solid rgba(20, 20, 19, 0.07);
}

.etwaz-lots-table-v2-total-label {
  font-size: 12px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.etwaz-lots-table-v2-total-value {
  font-size: 14px;
  font-weight: 700;
  color: #141413;
}

.etwaz-lots-table-v2-total-value--addendum {
  color: var(--amber);
}

.etwaz-lots-table-v2-total-value--situation {
  color: var(--submit, #96c10f);
}

.etwaz-identity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.etwaz-identity-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.etwaz-identity-group-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--submit, #96c10f);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.etwaz-identity-row {
  display: flex;
  gap: 8px;
}

.etwaz-identity-row-key {
  font-size: 13px;
  color: #aaa;
  flex-shrink: 0;
  min-width: 90px;
}

.etwaz-identity-row-val {
  font-size: 13px;
  color: #141413;
  font-weight: 500;
  word-break: break-word;
}

.etwaz-identity-docs-section {
  border-top: 1px solid rgba(20, 20, 19, 0.07);
  padding-top: 20px;
}

.etwaz-identity-docs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.etwaz-identity-docs-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--submit, #96c10f);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.etwaz-identity-doc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 9px;
  background: #faf9f5;
  cursor: pointer;
  transition: background 0.12s;
  text-decoration: none;
  margin-bottom: 2px;
}
.etwaz-identity-doc-item:hover {
  background: #f0efe8;
}

.etwaz-identity-doc-icon {
  width: 32px;
  height: 32px;
  background: #fff;
  border: 1px solid rgba(20, 20, 19, 0.08);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  flex-shrink: 0;
}
.etwaz-identity-doc-icon svg {
  width: 15px;
  height: 15px;
}

.etwaz-identity-doc-info {
  flex: 1;
  min-width: 0;
}

.etwaz-identity-doc-name {
  font-size: 13.5px;
  font-weight: 500;
  color: #141413;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.etwaz-identity-doc-date {
  font-size: 12px;
  color: #aaa;
  margin-top: 1px;
}

.etwaz-identity-doc-badge {
  font-size: 11px;
  font-weight: 600;
  color: #888;
  background: rgba(20, 20, 19, 0.06);
  padding: 3px 8px;
  border-radius: 6px;
  flex-shrink: 0;
}

.etwaz-lot-panel-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 19, 0.3);
  z-index: 150;
  backdrop-filter: blur(3px);
}
.etwaz-lot-panel-overlay.is-open {
  display: block;
}

.etwaz-lot-panel {
  position: fixed;
  top: 0;
  right: -440px;
  bottom: 0;
  width: 420px;
  background: #faf9f5;
  z-index: 160;
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(20, 20, 19, 0.12);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.etwaz-lot-panel.is-open {
  right: 0;
}

.etwaz-lot-panel-header {
  padding: 28px 28px 24px;
  border-bottom: 1px solid rgba(20, 20, 19, 0.07);
  background: #fff;
  flex-shrink: 0;
}

.etwaz-lot-panel-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.etwaz-lot-panel-company-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.etwaz-lot-panel-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(150, 193, 15, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--submit, #96c10f);
  flex-shrink: 0;
  overflow: hidden;
}
.etwaz-lot-panel-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.etwaz-lot-panel-avatar img.loaded {
  display: block;
}
.etwaz-lot-panel-avatar span {
  display: block;
}

.etwaz-lot-panel-company-name {
  font-size: 17px;
  font-weight: 700;
  color: #141413;
  letter-spacing: -0.02em;
}

.etwaz-lot-panel-lot-label {
  font-size: 13px;
  color: #888;
  margin-top: 2px;
}

.etwaz-lot-panel-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(20, 20, 19, 0.06);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  transition: background 0.15s;
}
.etwaz-lot-panel-close:hover {
  background: rgba(20, 20, 19, 0.12);
}

.etwaz-lot-panel-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.etwaz-lot-panel-contact-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: #444;
  text-decoration: none;
  transition: color 0.12s;
}
.etwaz-lot-panel-contact-link:hover {
  color: var(--submit, #96c10f);
}
.etwaz-lot-panel-contact-link svg {
  color: var(--submit, #96c10f);
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.etwaz-lot-panel-section {
  padding: 22px 28px;
  border-bottom: 1px solid rgba(20, 20, 19, 0.07);
}

.etwaz-lot-panel-section-header {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.etwaz-lot-panel-section-icon {
  align-items: center;
  background: rgba(150, 193, 15, 0.1);
  border-radius: 6px;
  color: var(--submit, #96c10f);
  display: flex;
  flex-shrink: 0;
  height: 22px;
  justify-content: center;
  width: 22px;
}
.etwaz-lot-panel-section-icon svg {
  height: 12px;
  width: 12px;
}

.etwaz-lot-panel-section-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.etwaz-lot-panel-progress-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.etwaz-lot-panel-progress-label {
  font-size: 12.5px;
  color: #888;
}

.etwaz-lot-panel-progress-pct {
  font-size: 13px;
  font-weight: 700;
  color: var(--submit, #96c10f);
}

.etwaz-lot-panel-progress-track {
  height: 6px;
  background: rgba(20, 20, 19, 0.07);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 14px;
}

.etwaz-lot-panel-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--submit, #96c10f), var(--submit, #96c10f));
  border-radius: 3px;
  transition: width 0.6s;
}

.etwaz-lot-panel-kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.etwaz-lot-panel-kpi {
  background: #fff;
  border: 1px solid rgba(20, 20, 19, 0.07);
  border-radius: 10px;
  padding: 12px 14px;
}

.etwaz-lot-panel-kpi--bold {
  background: rgba(150, 193, 15, 0.07);
  border-color: rgba(150, 193, 15, 0.2);
}

.etwaz-lot-panel-kpi-label {
  font-size: 11px;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin-bottom: 6px;
}

.etwaz-lot-panel-kpi-value {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #141413;
}

.etwaz-lot-panel-kpi-value--green {
  color: var(--submit, #96c10f);
}

.etwaz-lot-panel-kpi-value--orange {
  color: var(--amber);
}

.etwaz-lot-panel-footer {
  padding: 22px 28px;
  flex: 1;
}

.etwaz-lot-panel-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  background: var(--ink);
  color: var(--panel);
  border: none;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
  box-shadow: 0 2px 8px rgba(20, 20, 19, 0.28);
  margin-top: 20px;
}
.etwaz-lot-panel-cta:hover {
  background: var(--ink);
  color: var(--panel);
}

@media (max-width: 968px) {
  .etwaz-kpi-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .etwaz-kpi-value {
    font-size: 18px;
  }
  .etwaz-identity-grid {
    grid-template-columns: 1fr;
  }
  .etwaz-lot-panel {
    width: 100%;
    right: -100%;
  }
  .etwaz-lots-table-v2-head,
  .etwaz-lots-table-v2-row,
  .etwaz-lots-table-v2-total {
    grid-template-columns: 42px 1fr 1.4fr 0.9fr 0.9fr 0.9fr 32px;
    padding: 0 16px;
  }
  .etwaz-lots-table-v2-company-email {
    display: none;
  }
}
@media (max-width: 768px) {
  .etwaz-project-header-v2 {
    flex-direction: column;
    align-items: flex-start;
  }
  .etwaz-project-header-v2-right {
    width: 100%;
    justify-content: space-between;
  }
  .etwaz-project-header-v2-left--lot {
    width: 100%;
  }
  .etwaz-kpi-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .etwaz-project-detail .etwaz-kpi-card {
    padding: 4px;
  }
  .etwaz-project-detail .etwaz-kpi-value.etwaz-price-val {
    font-size: 12px;
  }
  .etwaz-lots-table-v2-total-value {
    font-size: 11px;
  }
  .etwaz-lots-table-v2-total-value.etwaz-lots-table-v2-total-value--situation.etwaz-price-val {
    text-align: right;
  }
  .etwaz-lots-table-v2-amount {
    font-size: 11px;
  }
  .etwaz-lots-table-v2-amount.etwaz-lots-table-v2-amount--situation.etwaz-price-val {
    text-align: right;
  }
  .etwaz-lots-table-v2-head,
  .etwaz-lots-table-v2-row,
  .etwaz-lots-table-v2-total {
    grid-template-columns: 36px 1fr 0.8fr 0.8fr 32px;
    padding: 0 12px;
  }
  .etwaz-lots-table-v2-head-cell:nth-child(3),
  .etwaz-lots-table-v2-row > *:nth-child(3),
  .etwaz-lots-table-v2-total > *:nth-child(3) {
    display: none;
  }
  .etwaz-lots-table-v2-head-cell:nth-child(5),
  .etwaz-lots-table-v2-row > *:nth-child(5),
  .etwaz-lots-table-v2-total > *:nth-child(5) {
    display: none;
  }
}
.etwaz-lot-offers-table {
  border-top: 1px solid var(--border);
}

.etwaz-lot-offers-table-head,
.etwaz-lot-offers-table-row {
  display: grid;
  grid-template-columns: 140px 1fr 140px 100px 40px;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 1rem;
}

.etwaz-lot-offers-table-head {
  background: var(--surface-2, #f7f7f5);
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.etwaz-lot-offers-table-row {
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.etwaz-lot-offers-table-row:last-child {
  border-bottom: none;
}
.etwaz-lot-offers-table-row--addendum {
  background: var(--surface-2, #f7f7f5);
}
.etwaz-lot-offers-table-row--addendum .etwaz-lot-offers-amount {
  color: var(--muted);
}

.etwaz-lot-offers-ref {
  font-weight: 600;
  color: var(--text);
}

.etwaz-lot-offers-nature {
  color: var(--muted);
}

.etwaz-lot-offers-amount {
  font-weight: 600;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.etwaz-lot-offers-date {
  color: var(--muted);
  font-size: 12.5px;
}

.etwaz-lot-offers-doc {
  display: flex;
  align-items: center;
  justify-content: center;
}

.etwaz-lot-offers-doc-link {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  transition: color 0.15s;
}
.etwaz-lot-offers-doc-link svg {
  width: 18px;
  height: 18px;
}
.etwaz-lot-offers-doc-link:hover {
  color: var(--text);
}

.etwaz-cumul-table {
  padding: 1rem 1rem 1rem;
}

.etwaz-cumul-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.etwaz-cumul-row:last-child {
  border-bottom: none;
}
.etwaz-cumul-row--total {
  padding-top: 1rem;
  font-weight: 700;
  font-size: 15px;
}

.etwaz-cumul-label {
  color: var(--text);
}

.etwaz-cumul-value {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}
.etwaz-cumul-value--empty {
  color: var(--muted);
  font-weight: 400;
}

.etwaz-situations-v2-wrapper {
  border-top: 1px solid var(--border);
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.etwaz-situations-v2-table {
  --sit-cols: 12px minmax(64px, 0.7fr) minmax(96px, 0.85fr) minmax(120px, 1.1fr) minmax(96px, 0.9fr) minmax(96px, 0.9fr) minmax(120px, 1.1fr) minmax(104px, 0.95fr) minmax(104px, 0.9fr) minmax(84px, 0.7fr) minmax(148px, 1.1fr);
  --sit-min-width: 1140px;
  min-width: 100%;
  width: 100%;
}
.etwaz-situations-v2-table--company {
  --sit-cols: 12px minmax(64px, 0.8fr) minmax(96px, 0.95fr) minmax(132px, 1.3fr) minmax(104px, 0.9fr) minmax(84px, 0.7fr);
  --sit-min-width: 552px;
}

.etwaz-situations-v2-head,
.etwaz-situations-v2-row {
  display: grid;
  align-items: center;
  justify-items: stretch;
  gap: 8px;
  padding: 9px 12px;
  grid-template-columns: var(--sit-cols);
  min-width: var(--sit-min-width);
  width: 100%;
}

.etwaz-situations-v2-head > *,
.etwaz-situations-v2-row > * {
  text-align: center;
  width: 100%;
}

.etwaz-situations-v2-head > :first-child,
.etwaz-situations-v2-row > :first-child {
  justify-self: center;
  width: auto;
}

.etwaz-situations-v2-head {
  background: var(--surface-2, #f7f7f5);
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.etwaz-situations-v2-row {
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  transition: background 0.1s;
}
.etwaz-situations-v2-row:last-child {
  border-bottom: none;
}
.etwaz-situations-v2-row:hover {
  background: var(--surface-2, #f7f7f5);
}
.etwaz-situations-v2-row--approved {
  border-left: 3px solid #22c55e;
}
.etwaz-situations-v2-row--rejected {
  border-left: 3px solid #ef4444;
}
.etwaz-situations-v2-row--pending {
  border-left: 3px solid #d1d5db;
}

.etwaz-situations-v2-indicator {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.etwaz-situations-v2-row--approved .etwaz-situations-v2-indicator {
  background: #22c55e;
}
.etwaz-situations-v2-row--rejected .etwaz-situations-v2-indicator {
  background: #ef4444;
}
.etwaz-situations-v2-row--pending .etwaz-situations-v2-indicator {
  background: #d1d5db;
}

.etwaz-situations-v2-ref {
  font-weight: 600;
}

.etwaz-situations-v2-date {
  color: var(--muted);
  font-size: 12px;
}

.etwaz-situations-v2-amount {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.etwaz-situations-v2-cell {
  color: var(--text);
  font-variant-numeric: tabular-nums;
  font-size: 12.5px;
}

.etwaz-situations-v2-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.etwaz-hidden-csrf {
  display: none;
}

.etwaz-situations-v2-payment-cell {
  display: flex;
  justify-content: center;
}

.etwaz-situation-payment-toggle {
  align-items: center;
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  gap: 6px;
  white-space: nowrap;
}
.etwaz-situation-payment-toggle input {
  accent-color: var(--submit);
  cursor: pointer;
  height: 14px;
  width: 14px;
}
.etwaz-situation-payment-toggle input:disabled {
  cursor: wait;
}

.etwaz-situation-payment-badge {
  display: inline-flex;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.etwaz-situation-payment-badge--paid {
  color: #16a34a;
}
.etwaz-situation-payment-badge--unpaid {
  color: #6b7280;
}

.etwaz-situation-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 2px 6px;
  white-space: nowrap;
}
.etwaz-situation-badge--approved {
  background: #dcfce7;
  color: #16a34a;
}
.etwaz-situation-badge--rejected {
  background: #fee2e2;
  color: #dc2626;
}
.etwaz-situation-badge--pending {
  background: #f3f4f6;
  color: #6b7280;
}

.etwaz-situation-correct-btn {
  background: none;
  border: 1px solid currentColor;
  border-radius: 100px;
  color: inherit;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
}
.etwaz-situation-correct-btn:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .etwaz-lot-offers-table-head,
  .etwaz-lot-offers-table-row {
    grid-template-columns: 1fr 100px 32px;
  }
  .etwaz-lot-offers-table-head span:nth-child(2),
  .etwaz-lot-offers-table-head span:nth-child(4),
  .etwaz-lot-offers-table-row span:nth-child(2),
  .etwaz-lot-offers-table-row span:nth-child(4) {
    display: none;
  }
  .etwaz-lot-offers-table-row {
    font-size: 11px;
  }
  .etwaz-cumul-row {
    font-size: 11px;
  }
  .etwaz-cumul-row--total {
    font-size: 13px;
  }
  .etwaz-situations-v2-cell {
    font-size: 11px;
  }
  .etwaz-situations-v2-row {
    font-size: 11px;
  }
}
.etwaz-modal-v2-card--wide {
  max-width: 1200px;
}

.or-static-value {
  color: var(--ink);
  font-size: 13px;
  display: inline-block;
  padding: 4px 0;
}

.or-static-value--muted {
  color: #aaa;
  font-size: 12px;
}

.or-errors {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: rgba(232, 80, 80, 0.06);
  border: 1px solid rgba(232, 80, 80, 0.12);
  border-radius: 10px;
  margin-bottom: 16px;
}

.or-errors-icon {
  color: #e85050;
  flex-shrink: 0;
  margin-top: 1px;
}

.or-errors-title {
  font-size: 13px;
  font-weight: 600;
  color: #e85050;
  margin-bottom: 6px;
}

.or-errors-list {
  margin: 0;
  padding-left: 16px;
  font-size: 13px;
  color: #e85050;
}

.or-table {
  width: 100%;
  border-collapse: collapse;
}

.or-table thead tr {
  background: #faf9f5;
  border-bottom: 1px solid rgba(20, 20, 19, 0.07);
}

.or-table th {
  padding: 12px 8px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #2a2d2e;
}

.or-table th:first-child {
  padding-left: 4px;
  width: 35%;
}

.or-table th:last-child {
  padding-right: 4px;
  width: 52px;
}

.or-table th:nth-child(3) {
  width: 25%;
}

.or-table tbody tr {
  border-bottom: 1px solid rgba(20, 20, 19, 0.06);
  transition: background 0.1s;
}

.or-table tbody tr:hover {
  background: #fafaf7;
}

.or-table td {
  padding: 10px 8px;
  vertical-align: top;
}

.or-table td:first-child {
  padding-left: 4px;
}

.or-table td:last-child {
  padding-right: 4px;
  width: 52px;
}

.or-input,
.or-select {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(20, 20, 19, 0.12);
  border-radius: 9px;
  background: #fff;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  font-family: inherit;
  transition: border-color 0.15s;
  box-sizing: border-box;
}

.or-input:focus,
.or-select:focus {
  border-color: var(--submit);
  border-width: 1.5px;
}

.or-input[readonly] {
  background: #faf9f5;
  color: #888;
  cursor: default;
}

.or-select {
  appearance: none;
  padding-right: 32px;
  cursor: pointer;
}

.or-select-wrap {
  position: relative;
}

.or-select-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #bbb;
}

.or-autocomplete-wrap {
  position: relative;
}

.or-autocomplete-drop {
  display: none;
  position: fixed;
  background: #fff;
  border: 1px solid rgba(20, 20, 19, 0.1);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(20, 20, 19, 0.12);
  z-index: 100000;
  overflow: hidden;
  max-height: 220px;
  overflow-y: auto;
}

.or-autocomplete-drop.is-open {
  display: block;
}

.or-autocomplete-item {
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.1s;
}

.or-autocomplete-item:hover {
  background: #faf9f5;
}

.or-autocomplete-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

.or-autocomplete-detail {
  font-size: 12px;
  color: #aaa;
}

.or-remove-btn {
  width: 36px;
  height: 42px;
  border-radius: 9px;
  border: 1px solid rgba(232, 80, 80, 0.2);
  background: rgba(232, 80, 80, 0.04);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e85050;
  transition: background 0.15s;
}

.or-remove-btn:hover:not(:disabled) {
  background: rgba(232, 80, 80, 0.12);
}

.or-remove-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.or-add-row {
  padding: 14px 0 4px;
}

.or-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 14px;
  border-radius: 9px;
  border: none;
  background: var(--ink);
  color: var(--panel);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.or-add-btn:hover {
  background: var(--ink);
}

.or-file-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--submit);
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 5px;
}

.or-file-link:hover {
  color: var(--submit);
}

.or-file-input {
  font-size: 12px;
  color: #666;
  width: 100%;
}

.or-edit-hint {
  background: #faf9f5;
  border: 1px solid rgba(20, 20, 19, 0.07);
  border-radius: 9px;
  color: #888;
  font-size: 12.5px;
  line-height: 1.5;
  margin: 0 0 16px;
  padding: 10px 14px;
}

.etwaz-network-header {
  margin-bottom: 28px;
}

.etwaz-network-page-title {
  color: #141413;
  font-family: "Fraunces", serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 5px;
}

.etwaz-network-page-subtitle {
  color: #888;
  font-size: 13.5px;
  margin: 0;
}

.etwaz-network-panel {
  background: #fff;
  border: 1px solid rgba(20, 20, 19, 0.07);
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(20, 20, 19, 0.05);
  overflow: hidden;
}

.etwaz-network-panel-topbar {
  align-items: center;
  border-bottom: 1px solid rgba(20, 20, 19, 0.06);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 18px 24px;
}

.etwaz-network-panel-heading {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.etwaz-network-panel-icon {
  align-items: center;
  background: var(--green-soft);
  border-radius: 8px;
  color: var(--submit);
  display: flex;
  height: 32px;
  justify-content: center;
  width: 32px;
}
.etwaz-network-panel-icon svg {
  height: 16px;
  width: 16px;
}

.etwaz-network-panel-title {
  color: #141413;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.etwaz-network-panel-count {
  background: rgba(20, 20, 19, 0.05);
  border-radius: 999px;
  color: #bbb;
  display: inline-flex;
  font-size: 12px;
  font-weight: 500;
  min-width: 24px;
  padding: 2px 8px;
}

.etwaz-network-search {
  flex: 1;
  max-width: 380px;
  position: relative;
}

.etwaz-network-search-icon {
  color: #aaa;
  height: 15px;
  left: 13px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
}

.etwaz-network-search-input {
  background: #fff;
  border: 1.5px solid rgba(20, 20, 19, 0.1);
  border-radius: 10px;
  color: #141413;
  font-family: inherit;
  font-size: 13.5px;
  height: 40px;
  outline: none;
  padding: 0 36px 0 40px;
  transition: border-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
.etwaz-network-search-input:focus {
  border-color: var(--submit);
}
.etwaz-network-search-input::placeholder {
  color: #bbb;
}

.etwaz-network-search-clear {
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 4px;
  color: #bbb;
  cursor: pointer;
  display: flex;
  height: 24px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
}
.etwaz-network-search-clear:hover {
  color: #666;
}
.etwaz-network-search-clear svg {
  height: 14px;
  width: 14px;
}

.etwaz-network-filterbar {
  align-items: center;
  border-bottom: 1px solid rgba(20, 20, 19, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 14px 24px;
}

.etwaz-network-lot-filter {
  align-items: center;
  display: flex;
  gap: 8px;
}

.etwaz-network-lot-filter-label {
  color: #888;
  font-size: 12.5px;
  font-weight: 500;
}

.etwaz-network-lot-select {
  background: #fff;
  border: 1.5px solid rgba(20, 20, 19, 0.1);
  border-radius: 8px;
  color: #141413;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  height: 32px;
  padding: 0 10px;
  transition: border-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-network-lot-select:focus {
  border-color: var(--submit);
  outline: none;
}

.etwaz-network-sort {
  align-items: center;
  display: flex;
  gap: 8px;
}

.etwaz-network-sort-label {
  color: #888;
  font-size: 12.5px;
  font-weight: 500;
}

.etwaz-network-sort-btn {
  background: transparent;
  border: none;
  border-radius: 7px;
  color: #666;
  cursor: pointer;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 500;
  height: 30px;
  padding: 0 12px;
  transition: background 200ms cubic-bezier(0.4, 0, 0.2, 1), color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-network-sort-btn:hover {
  background: rgba(20, 20, 19, 0.05);
}
.etwaz-network-sort-btn.etwaz-network-sort-btn-active {
  background: var(--ink);
  color: var(--panel);
}
.etwaz-network-sort-btn.etwaz-network-sort-btn-active:hover {
  background: var(--ink);
}

.etwaz-network-table-wrapper {
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}
.etwaz-network-table-wrapper::-webkit-scrollbar {
  height: 6px;
}
.etwaz-network-table-wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.etwaz-network-table-wrapper::-webkit-scrollbar-thumb {
  background: rgba(20, 20, 19, 0.12);
  border-radius: 999px;
}

.etwaz-network-table-head,
.etwaz-network-table-row {
  align-items: center;
  column-gap: 16px;
  display: grid;
  grid-template-columns: 150px 200px minmax(200px, 1fr) 130px 140px 80px;
  min-width: 900px;
  padding-left: 24px;
  padding-right: 24px;
}

.etwaz-network-table-head {
  background: #fafaf7;
  border-bottom: 1px solid rgba(20, 20, 19, 0.05);
  height: 38px;
}
.etwaz-network-table-head span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.etwaz-network-table-head span:last-child {
  text-align: center;
}

.etwaz-network-table-body:empty {
  display: none;
}

.etwaz-network-table-row {
  background: #fff;
  border-bottom: 1px solid rgba(20, 20, 19, 0.05);
  min-height: 58px;
  transition: background-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-network-table-row:last-child {
  border-bottom: none;
}
.etwaz-network-table-row:hover {
  background: #fafaf7;
}

.etwaz-network-lot {
  color: #141413;
  font-size: 13.5px;
  font-weight: 600;
}

.etwaz-network-company {
  align-items: center;
  display: flex;
  gap: 10px;
  min-width: 0;
}

.etwaz-network-avatar {
  align-items: center;
  border-radius: 9px;
  display: flex;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  height: 36px;
  justify-content: center;
  letter-spacing: 0.03em;
  width: 36px;
}

.etwaz-network-company-name {
  color: #141413;
  font-size: 13.5px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.etwaz-network-mail {
  align-items: center;
  color: #bbb;
  display: flex;
  gap: 7px;
  min-width: 0;
}
.etwaz-network-mail svg {
  flex-shrink: 0;
  height: 13px;
  width: 13px;
}
.etwaz-network-mail a {
  color: #555;
  font-size: 13px;
  overflow: hidden;
  text-decoration: none;
  text-overflow: ellipsis;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.etwaz-network-mail a:hover {
  color: var(--submit);
}

.etwaz-network-phone {
  align-items: center;
  color: #bbb;
  display: flex;
  gap: 7px;
  min-width: 0;
}
.etwaz-network-phone svg {
  flex-shrink: 0;
  height: 13px;
  width: 13px;
}
.etwaz-network-phone a {
  color: #555;
  font-size: 13px;
  overflow: hidden;
  text-decoration: none;
  text-overflow: ellipsis;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.etwaz-network-phone a:hover {
  color: var(--submit);
}

.etwaz-network-siret {
  color: #555;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.etwaz-network-assurance {
  display: flex;
  justify-content: center;
}

.etwaz-network-pdf-link {
  align-items: center;
  background: var(--green-soft);
  border-radius: 8px;
  color: var(--submit);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  text-decoration: none;
  transition: background 200ms cubic-bezier(0.4, 0, 0.2, 1), color 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 34px;
}
.etwaz-network-pdf-link:hover {
  background: var(--green-soft);
  color: var(--submit-hover);
}
.etwaz-network-pdf-link svg {
  height: 18px;
  width: 18px;
}

.etwaz-network-muted {
  color: #ccc;
}

.etwaz-network-feedback,
.etwaz-network-empty {
  align-items: center;
  color: #bbb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
  padding: 40px 24px;
  text-align: center;
}

.etwaz-network-feedback--loading {
  color: #888;
  font-size: 14px;
  font-weight: 500;
}

.etwaz-network-empty-icon {
  align-items: center;
  background: rgba(20, 20, 19, 0.04);
  border-radius: 12px;
  color: #ddd;
  display: flex;
  height: 48px;
  justify-content: center;
  margin-bottom: 14px;
  width: 48px;
}
.etwaz-network-empty-icon svg {
  height: 22px;
  width: 22px;
}

.etwaz-network-empty-title {
  color: #bbb;
  font-size: 14px;
  font-weight: 500;
}

.etwaz-network-empty-text {
  color: #ccc;
  font-size: 13px;
  margin-top: 4px;
  max-width: 360px;
}

.etwaz-situations-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.etwaz-situations-header h2 {
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.etwaz-situations-table-wrapper {
  overflow-x: auto;
}

.etwaz-situations-table {
  border-collapse: collapse;
  width: 100%;
}

.etwaz-situations-table thead {
  background: #f9fafb;
}

.etwaz-situations-table th {
  color: var(--submit);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: left;
}

.etwaz-situations-col-ref {
  width: 4.5rem;
}

.etwaz-situations-col-doc {
  min-width: 6.5rem;
}

.etwaz-situations-col-badge {
  color: var(--submit);
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
}
.etwaz-situations-col-badge sup {
  font-size: 0.5rem;
  line-height: 1;
  margin-left: 0.05rem;
  position: relative;
  top: -0.35rem;
}

.etwaz-situations-table tbody tr {
  border-bottom: 1px solid var(--border);
  position: relative;
}

.etwaz-situation-row {
  position: relative;
}

.etwaz-situation-row td:first-child {
  position: relative;
}

.etwaz-situation-row td:first-child::before {
  background: #f59e0b;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 8px;
}

.etwaz-situation-approved td:first-child::before {
  background: #10b981;
}

.etwaz-situation-rejected td:first-child::before {
  background: #ef4444;
}

.etwaz-situation-pending td:first-child::before {
  background: #f59e0b;
}

.etwaz-situation-row td {
  padding: 0.75rem 1rem;
  padding-left: 1.5rem;
}

.etwaz-table-label {
  color: var(--submit);
  font-weight: 600;
}

.etwaz-table-data {
  color: var(--muted);
}

.etwaz-situations-doc-cell {
  text-align: center;
}

.etwaz-situations-doc-link {
  align-items: center;
  color: #16a34a;
  display: inline-flex;
  height: 32px;
  justify-content: center;
  text-decoration: none;
  width: 32px;
}

.etwaz-quotes-table-wrapper {
  overflow-x: auto;
  margin-top: 1.5rem;
}

.etwaz-quotes-table {
  border-collapse: collapse;
  width: 100%;
}

.etwaz-quotes-table thead {
  background: #f9fafb;
}

.etwaz-quotes-table th {
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: left;
}

.etwaz-quotes-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.etwaz-quotes-table tbody tr:hover {
  background: #f9fafb;
}

.etwaz-lot-table-row {
  cursor: pointer;
}
.etwaz-lot-table-row:hover {
  background: rgba(150, 193, 15, 0.05) !important;
}
.etwaz-lot-table-row:active {
  background: rgba(150, 193, 15, 0.1) !important;
}

.etwaz-quotes-table td {
  color: #9ca3af;
  padding: 0.75rem 1rem;
}
.etwaz-quotes-table td.etwaz-table-label {
  color: #9ca3af;
}

.etwaz-quotes-table-col-lot {
  width: 4rem;
}

.etwaz-quotes-table-cell-lot {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  position: relative;
}

.etwaz-quotes-table-cell-lot--pending::before {
  background: #ef4444;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 4px;
}

.etwaz-quotes-table-lot-num {
  color: #9ca3af;
  font-weight: 600;
}

.etwaz-quotes-table-cell-company {
  color: #9ca3af;
}

.etwaz-quotes-table-company {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.etwaz-quotes-table-company-logo {
  border-radius: 999px;
  flex-shrink: 0;
  height: 28px;
  object-fit: cover;
  width: 28px;
}

.etwaz-quotes-table-company-avatar {
  align-items: center;
  background: #e5e7eb;
  border-radius: 999px;
  color: #9ca3af;
  display: flex;
  flex-shrink: 0;
  font-size: 0.8rem;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.etwaz-quotes-table-company-name {
  color: #9ca3af;
  font-weight: 500;
}

.etwaz-quotes-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

#quote-form {
  background: #f9fafb;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
}

.etwaz-quote-item {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem;
}

.etwaz-quote-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.25rem;
}

.etwaz-quote-company {
  color: var(--text);
  font-weight: 600;
}

.etwaz-quote-date {
  color: var(--muted);
  font-size: 0.875rem;
}

.etwaz-quote-amount {
  color: var(--text);
  font-weight: 600;
}

.etwaz-quote-link {
  color: var(--submit);
  font-size: 0.875rem;
  text-decoration: none;
}

.etwaz-quote-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .etwaz-network-page-title {
    font-size: 24px;
  }
  .etwaz-network-panel-topbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .etwaz-network-search {
    max-width: none;
    width: 100%;
  }
  .etwaz-network-filterbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .etwaz-situations-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .etwaz-situations-header h2 {
    font-size: 1.125rem;
  }
  .etwaz-situations-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .etwaz-situations-table {
    min-width: 600px;
  }
  .etwaz-quotes-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .etwaz-quotes-table {
    min-width: 600px;
  }
  .etwaz-quote-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .etwaz-quote-company {
    font-size: 0.9375rem;
  }
  .etwaz-quote-date {
    font-size: 0.8125rem;
  }
  .etwaz-quote-amount {
    font-size: 0.9375rem;
  }
}
@media (max-width: 640px) {
  .etwaz-network-page-title {
    font-size: 22px;
  }
  .etwaz-network-page-subtitle {
    font-size: 13px;
  }
  .etwaz-network-panel-topbar {
    padding: 16px 18px;
  }
  .etwaz-network-table-head,
  .etwaz-network-table-row {
    padding-left: 18px;
    padding-right: 18px;
  }
  .etwaz-network-filterbar {
    padding: 12px 18px;
  }
  .etwaz-situations-header {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  .etwaz-situations-header h2 {
    font-size: 1rem;
  }
  .etwaz-situations-table {
    min-width: 500px;
    font-size: 0.875rem;
  }
  .etwaz-situations-table th {
    font-size: 0.8125rem;
    padding: 0.5rem 0.5rem;
  }
  .etwaz-situation-row td {
    padding: 0.5rem 0.5rem;
    padding-left: 1rem;
  }
  .etwaz-quotes-table {
    min-width: 500px;
    font-size: 0.875rem;
  }
  .etwaz-quotes-table th {
    font-size: 0.8125rem;
    padding: 0.5rem 0.5rem;
  }
  .etwaz-quotes-table td {
    padding: 0.5rem 0.5rem;
  }
  .etwaz-quote-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem;
  }
  .etwaz-quote-company {
    font-size: 0.875rem;
  }
  .etwaz-quote-date {
    font-size: 0.75rem;
  }
  .etwaz-quote-amount {
    font-size: 0.875rem;
  }
  .etwaz-quote-link {
    font-size: 0.8125rem;
  }
  #quote-form {
    padding: 1rem;
  }
}
@media (max-width: 480px) {
  .etwaz-network-page-title {
    font-size: 20px;
  }
  .etwaz-network-panel-heading {
    gap: 8px;
  }
  .etwaz-network-panel-title {
    font-size: 14px;
  }
  .etwaz-network-table-head,
  .etwaz-network-table-row {
    min-width: 840px;
    padding-left: 14px;
    padding-right: 14px;
  }
  .etwaz-network-filterbar {
    padding: 12px 14px;
  }
  .etwaz-situations-header h2 {
    font-size: 0.9375rem;
  }
  .etwaz-situations-table {
    min-width: 450px;
    font-size: 0.8125rem;
  }
  .etwaz-situations-table th {
    font-size: 0.75rem;
    padding: 0.4375rem 0.5rem;
  }
  .etwaz-situation-row td {
    padding: 0.4375rem 0.5rem;
    padding-left: 0.875rem;
  }
  .etwaz-quotes-table {
    min-width: 450px;
    font-size: 0.8125rem;
  }
  .etwaz-quotes-table th {
    font-size: 0.75rem;
    padding: 0.4375rem 0.5rem;
  }
  .etwaz-quotes-table td {
    padding: 0.4375rem 0.5rem;
  }
}
@keyframes alertRowSlideIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.etwaz-alerts {
  margin: 0 auto;
  max-width: 1400px;
}

.etwaz-alerts-header {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-bottom: 1.5rem;
}

.etwaz-alerts-title {
  color: var(--text);
  font-family: "Fraunces", serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.25rem 0;
}

.etwaz-alerts-subtitle {
  color: var(--muted);
  font-size: 0.9375rem;
  margin: 0;
}
.etwaz-alerts-subtitle strong {
  color: var(--text);
  font-weight: 600;
}

.etwaz-alerts-toolbar {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.etwaz-alerts-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.etwaz-alerts-filter {
  align-items: center;
  background: rgba(20, 20, 19, 0.05);
  border: none;
  border-radius: 9999px;
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  gap: 0.4375rem;
  height: 34px;
  padding: 0 0.875rem;
  transition: background 150ms cubic-bezier(0.4, 0, 0.2, 1), color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-alerts-filter:hover {
  background: rgba(20, 20, 19, 0.09);
}
.etwaz-alerts-filter.etwaz-alerts-filter-active {
  background: var(--ink);
  color: var(--panel);
  font-weight: 600;
}
.etwaz-alerts-filter.etwaz-alerts-filter-active:hover {
  background: var(--ink);
}
.etwaz-alerts-filter.etwaz-alerts-filter-active .etwaz-alerts-filter-count {
  background: rgba(255, 255, 255, 0.18);
  color: var(--panel);
}

.etwaz-alerts-filter-count {
  background: rgba(20, 20, 19, 0.08);
  border-radius: 9999px;
  color: #888;
  font-size: 0.6875rem;
  font-weight: 700;
  min-width: 18px;
  padding: 1px 6px;
  text-align: center;
}

.etwaz-alerts-sort {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.etwaz-alerts-sort-label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
}

.etwaz-alerts-sort-btn {
  background: transparent;
  border: none;
  border-radius: 9px;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.78125rem;
  font-weight: 500;
  height: 30px;
  padding: 0 0.75rem;
  transition: background 150ms cubic-bezier(0.4, 0, 0.2, 1), color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-alerts-sort-btn:hover {
  background: rgba(20, 20, 19, 0.05);
}
.etwaz-alerts-sort-btn.etwaz-alerts-sort-btn-active {
  background: var(--ink);
  color: var(--panel);
}
.etwaz-alerts-sort-btn.etwaz-alerts-sort-btn-active:hover {
  background: var(--ink);
}

.etwaz-alerts-groups {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.etwaz-alerts-project-group {
  background: var(--panel);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  animation: alertRowSlideIn 0.35s ease both;
}

@media (min-width: 1200px) {
  .etwaz-alerts-groups {
    column-count: 2;
    column-gap: 1rem;
    display: block;
  }
  .etwaz-alerts-project-group {
    break-inside: avoid;
    margin-bottom: 1rem;
    width: 100%;
  }
  .etwaz-alerts-groups.etwaz-alerts-groups--single {
    column-count: 1;
  }
}
.etwaz-alerts-project-header {
  align-items: center;
  background: #faf9f5;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
}

.etwaz-alerts-project-link {
  align-items: center;
  color: var(--text);
  display: flex;
  gap: 0.5rem;
  min-width: 0;
  text-decoration: none;
}
.etwaz-alerts-project-link:hover .etwaz-alerts-project-name {
  text-decoration: underline;
}

.etwaz-alerts-project-thumb {
  align-items: center;
  background: rgba(20, 20, 19, 0.06);
  border-radius: 9px;
  color: #555;
  display: flex;
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  height: 24px;
  justify-content: center;
  overflow: hidden;
  width: 24px;
}
.etwaz-alerts-project-thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.etwaz-alerts-project-name {
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.etwaz-alerts-project-count {
  background: var(--amber-soft);
  border-radius: 9999px;
  color: var(--amber);
  flex-shrink: 0;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.5625rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.etwaz-alerts-lots {
  padding: 0.25rem 1.25rem 0.75rem;
}

.etwaz-alerts-lot-group {
  border-bottom: 1px solid rgba(20, 20, 19, 0.06);
  padding: 0.875rem 0;
}
.etwaz-alerts-lot-group:last-child {
  border-bottom: none;
}

.etwaz-alerts-lot-header {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.etwaz-alerts-lot-label {
  align-items: center;
  color: #444;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 700;
  gap: 0.375rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.etwaz-alerts-lot-label svg {
  color: #bbb;
  flex-shrink: 0;
}

.etwaz-alerts-lot-link {
  align-items: center;
  color: var(--submit);
  display: inline-flex;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  gap: 0.25rem;
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-alerts-lot-link svg {
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-alerts-lot-link:hover {
  color: var(--submit-hover);
}
.etwaz-alerts-lot-link:hover svg {
  transform: translateX(2px);
}

.etwaz-alerts-lot-situations {
  display: flex;
  flex-direction: column;
}

.etwaz-alerts-situation-row {
  align-items: center;
  border-top: 1px solid rgba(20, 20, 19, 0.05);
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  padding: 0.625rem 0;
  transition: background 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-alerts-situation-row:first-child {
  border-top: none;
}

.etwaz-alerts-situation-main {
  min-width: 0;
}

.etwaz-alerts-situation-invoice {
  color: var(--text);
  font-size: 0.8125rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.etwaz-alerts-situation-meta {
  color: #aaa;
  font-size: 0.71875rem;
  margin-top: 0.0625rem;
}

.etwaz-alerts-situation-side {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 0.625rem;
}

.etwaz-alerts-situation-amount {
  color: var(--text);
  flex-shrink: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
}

.etwaz-alerts-situation-dot {
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  height: 7px;
  width: 7px;
}
.etwaz-alerts-situation-dot--urgent {
  background: #ef4444;
}

.etwaz-alerts-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.etwaz-alert-row {
  display: flex;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1), transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
  animation: alertRowSlideIn 0.35s ease both;
}
.etwaz-alert-row:nth-child(1) {
  animation-delay: 0ms;
}
.etwaz-alert-row:nth-child(2) {
  animation-delay: 55ms;
}
.etwaz-alert-row:nth-child(3) {
  animation-delay: 110ms;
}
.etwaz-alert-row:nth-child(4) {
  animation-delay: 165ms;
}
.etwaz-alert-row:nth-child(5) {
  animation-delay: 220ms;
}
.etwaz-alert-row:nth-child(6) {
  animation-delay: 275ms;
}
.etwaz-alert-row:nth-child(7) {
  animation-delay: 330ms;
}
.etwaz-alert-row:nth-child(8) {
  animation-delay: 385ms;
}
.etwaz-alert-row:nth-child(9) {
  animation-delay: 440ms;
}
.etwaz-alert-row:nth-child(10) {
  animation-delay: 495ms;
}
.etwaz-alert-row:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}
.etwaz-alert-row:hover .etwaz-alert-row-accent {
  width: 5px;
}
.etwaz-alert-row:hover .etwaz-alert-cta svg {
  transform: translateX(3px);
}

.etwaz-alert-row-accent {
  width: 3px;
  flex-shrink: 0;
  transition: width 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-alert-row-accent--pending {
  background: var(--amber);
}
.etwaz-alert-row-accent--approved {
  background: var(--submit);
}

.etwaz-alert-row-content {
  flex: 1;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.etwaz-alert-row-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.etwaz-alert-row-project {
  flex: 1;
  min-width: 0;
}

.etwaz-alert-project-name {
  color: var(--text);
  font-family: "Fraunces", serif;
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 0.2rem 0;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.etwaz-alert-company-name {
  color: var(--muted);
  font-size: 0.875rem;
  margin: 0;
}

.etwaz-alert-row-badge {
  flex-shrink: 0;
}

.etwaz-alert-badge {
  display: inline-block;
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
}
.etwaz-alert-badge--pending {
  background: var(--amber-soft);
  color: var(--amber);
}
.etwaz-alert-badge--approved {
  background: var(--green-soft);
  color: var(--submit);
}

.etwaz-alert-row-meta {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
  flex-wrap: wrap;
}

.etwaz-alert-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.etwaz-alert-meta-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.etwaz-alert-meta-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}
.etwaz-alert-meta-value--amount {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.etwaz-alert-row-action {
  margin-left: auto;
  flex-shrink: 0;
}

.etwaz-alert-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--panel);
  text-decoration: none;
  flex-shrink: 0;
  padding: 0.5rem 0.875rem;
  border: 1.5px solid var(--ink);
  border-radius: 9px;
  background: var(--ink);
  transition: background 150ms cubic-bezier(0.4, 0, 0.2, 1), border-color 150ms cubic-bezier(0.4, 0, 0.2, 1), color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.etwaz-alert-cta svg {
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-alert-cta:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--panel);
}

.etwaz-alerts-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
}

.etwaz-alerts-empty-icon {
  color: var(--submit);
  margin-bottom: 1.5rem;
  opacity: 0.75;
}

.etwaz-alerts-empty-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.25rem 0;
}

.etwaz-alerts-empty-text {
  color: var(--muted);
  font-size: 0.9375rem;
  margin: 0;
}

@media (max-width: 768px) {
  .etwaz-alerts-header {
    gap: 2rem;
  }
  .etwaz-alerts-big-number {
    font-size: 4rem;
  }
  .etwaz-alerts-title {
    font-size: 1.625rem;
  }
  .etwaz-alert-row-content {
    padding: 1rem 1.5rem;
  }
  .etwaz-alert-row-meta {
    gap: 1.5rem;
  }
}
@media (max-width: 640px) {
  .etwaz-alerts-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-bottom: 2rem;
  }
  .etwaz-alerts-big-number {
    font-size: 3rem;
  }
  .etwaz-alerts-title {
    font-size: 1.375rem;
  }
  .etwaz-alert-row-content {
    padding: 1rem;
  }
  .etwaz-alert-row-main {
    flex-direction: column;
    gap: 0.5rem;
  }
  .etwaz-alert-row-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .etwaz-alert-meta-item {
    flex-direction: row;
    align-items: baseline;
    gap: 0.5rem;
  }
  .etwaz-alert-meta-label {
    min-width: 88px;
  }
  .etwaz-alert-row-action {
    margin-left: 0;
    padding-top: 0.25rem;
  }
  .etwaz-alert-row-action .etwaz-alert-cta {
    width: 100%;
    justify-content: center;
  }
  .etwaz-alerts-project-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }
  .etwaz-alerts-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .etwaz-alerts-lots {
    padding: 0.25rem 1rem 0.75rem;
  }
}
@media (max-width: 480px) {
  .etwaz-alerts-big-number {
    font-size: 2.5rem;
  }
  .etwaz-alerts-title {
    font-size: 1.25rem;
  }
  .etwaz-alert-row-content {
    padding: 0.5rem 1rem;
  }
}
.etwaz-toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.etwaz-toast {
  align-items: center;
  background: #ffffff;
  border-left: 4px solid;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 1rem;
  max-width: 400px;
  padding: 1rem 1.5rem;
  pointer-events: auto;
  transform: translateX(120%);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1) ease-out;
  width: 100%;
}

.etwaz-toast.etwaz-toast-show {
  transform: translateX(0);
}

.etwaz-toast-success {
  border-left-color: var(--submit);
}

.etwaz-toast-error {
  border-left-color: #ef4444;
}

.etwaz-toast-warning {
  border-left-color: #f59e0b;
}

.etwaz-toast-info {
  border-left-color: #3b82f6;
}

.etwaz-toast-icon {
  align-items: center;
  border-radius: 9999px;
  display: flex;
  flex-shrink: 0;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.etwaz-toast-success .etwaz-toast-icon {
  background: rgba(150, 193, 15, 0.1);
  color: var(--submit);
}

.etwaz-toast-error .etwaz-toast-icon {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.etwaz-toast-warning .etwaz-toast-icon {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.etwaz-toast-info .etwaz-toast-icon {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.etwaz-toast-content {
  flex: 1;
}

.etwaz-toast-title {
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.etwaz-toast-message {
  color: var(--muted);
  font-size: 0.875rem;
  margin: 0;
}

.etwaz-toast-close {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 20px;
}

.etwaz-toast-close:hover {
  color: var(--text);
}

@media (max-width: 768px) {
  .etwaz-toast-container {
    right: 1rem;
    top: 1rem;
  }
  .etwaz-toast {
    max-width: 350px;
    padding: 0.5rem 1rem;
  }
  .etwaz-toast-title {
    font-size: 0.8125rem;
  }
  .etwaz-toast-message {
    font-size: 0.8125rem;
  }
}
@media (max-width: 640px) {
  .etwaz-toast-container {
    right: 0.5rem;
    top: 0.5rem;
  }
  .etwaz-toast {
    max-width: 320px;
    padding: 0.25rem 0.5rem;
  }
  .etwaz-toast-icon {
    height: 28px;
    width: 28px;
  }
  .etwaz-toast-title {
    font-size: 0.75rem;
  }
  .etwaz-toast-message {
    font-size: 0.75rem;
  }
}
@media (max-width: 480px) {
  .etwaz-toast-container {
    left: 0.5rem;
    right: 0.5rem;
    top: 0.5rem;
  }
  .etwaz-toast {
    max-width: 100%;
    padding: 0.25rem;
  }
  .etwaz-toast-icon {
    height: 24px;
    width: 24px;
  }
  .etwaz-toast-title {
    font-size: 0.6875rem;
  }
  .etwaz-toast-message {
    font-size: 0.6875rem;
  }
  .etwaz-toast-close {
    width: 18px;
    font-size: 1.125rem;
  }
}
.etwaz-companies-table-wrapper {
  margin: 1rem 0;
  overflow-x: auto;
  overflow-y: visible !important;
  padding-bottom: 20px;
  position: relative;
  width: 100%;
  z-index: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--muted) #f9fafb;
}
.etwaz-companies-table-wrapper::-webkit-scrollbar {
  height: 12px;
}
.etwaz-companies-table-wrapper::-webkit-scrollbar-track {
  background: #f9fafb;
  border-radius: 8px;
  margin: 0.25rem;
}
.etwaz-companies-table-wrapper::-webkit-scrollbar-thumb {
  background: var(--muted);
  border-radius: 8px;
  border: 2px solid #f9fafb;
}
.etwaz-companies-table-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--text);
}
.etwaz-companies-table-wrapper .etwaz-companies-table {
  position: relative;
}
.etwaz-companies-table-wrapper .etwaz-companies-table tbody {
  position: relative;
}
.etwaz-companies-table-wrapper .etwaz-companies-table tbody tr {
  position: relative;
}
.etwaz-companies-table-wrapper .etwaz-companies-table tbody tr td {
  position: relative;
  overflow: visible;
}
.etwaz-companies-table-wrapper .etwaz-companies-table tbody tr td .etwaz-autocomplete-wrapper {
  position: relative;
  overflow: visible;
}
.etwaz-companies-table-wrapper .etwaz-companies-table tbody tr td .etwaz-autocomplete-wrapper .etwaz-autocomplete-dropdown {
  position: absolute;
  z-index: 10001;
}

.etwaz-companies-table {
  border-collapse: collapse;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: visible;
  table-layout: auto;
}

.etwaz-companies-table thead {
  background: var(--hero);
}

.etwaz-companies-table th {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 1rem;
  text-align: left;
  white-space: nowrap;
}

.etwaz-companies-table td {
  border-top: 1px solid #e5e7eb;
  padding: 0.5rem;
  vertical-align: middle;
  position: relative;
  overflow: visible;
}

.etwaz-companies-table th:nth-child(1),
.etwaz-companies-table td:nth-child(1) {
  min-width: 140px;
}

.etwaz-companies-table th:nth-child(2),
.etwaz-companies-table td:nth-child(2) {
  min-width: 180px;
}

.etwaz-companies-table th:nth-child(3),
.etwaz-companies-table td:nth-child(3) {
  min-width: 120px;
}

.etwaz-companies-table th:nth-child(4),
.etwaz-companies-table td:nth-child(4) {
  min-width: 120px;
}

.etwaz-companies-table th:nth-child(5),
.etwaz-companies-table td:nth-child(5) {
  min-width: 180px;
}

.etwaz-companies-table th:nth-child(6),
.etwaz-companies-table td:nth-child(6) {
  min-width: 140px;
}

.etwaz-companies-table th:nth-child(7),
.etwaz-companies-table td:nth-child(7) {
  min-width: 140px;
}

.etwaz-companies-table th:nth-child(8),
.etwaz-companies-table td:nth-child(8) {
  min-width: 120px;
}

.etwaz-companies-table th:nth-child(9),
.etwaz-companies-table td:nth-child(9) {
  min-width: 50px;
  width: 50px;
  text-align: center;
}

.etwaz-companies-table tbody {
  overflow: visible;
  position: relative;
}

.etwaz-companies-table tbody tr {
  overflow: visible;
  position: relative;
}

.etwaz-companies-table tbody tr:hover {
  background: #f9fafb;
}

.etwaz-companies-table .etwaz-input {
  background: var(--input-bg);
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  width: 100%;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-companies-table .etwaz-input:focus {
  border-color: var(--submit);
  box-shadow: 0 0 0 3px rgba(150, 193, 15, 0.1);
  outline: none;
}

.etwaz-autocomplete-wrapper {
  position: relative;
  z-index: 1;
}

.etwaz-autocomplete-dropdown {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  display: none;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: visible;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 10001;
  margin-top: 0.25rem;
}
.etwaz-autocomplete-dropdown[style*="position: fixed"] {
  position: fixed !important;
  z-index: 100000 !important;
  margin-top: 0;
}

.etwaz-companies-table td {
  position: relative;
  z-index: 0;
}
.etwaz-companies-table td .etwaz-autocomplete-wrapper {
  position: relative;
  z-index: 1;
}
.etwaz-companies-table td .etwaz-autocomplete-wrapper .etwaz-autocomplete-dropdown {
  position: absolute;
  z-index: 10001;
}

.etwaz-autocomplete-dropdown.etwaz-autocomplete-show {
  display: block;
}

.etwaz-autocomplete-item {
  cursor: pointer;
  padding: 1rem;
  transition: background 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-autocomplete-item:hover {
  background: #f9fafb;
}
.etwaz-autocomplete-item.etwaz-autocomplete-selected {
  background: rgba(150, 193, 15, 0.1);
}

.etwaz-autocomplete-item-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.etwaz-autocomplete-item-details {
  color: var(--muted);
  font-size: 0.75rem;
}

.etwaz-btn-add-row {
  background: var(--submit);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-btn-add-row:hover {
  background: #5fa83d;
  transform: translateY(-1px);
}

.etwaz-actions {
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.etwaz-actions > .etwaz-btn-secondary,
.etwaz-actions > .etwaz-btn-danger,
.etwaz-actions > .etwaz-submit {
  align-items: center;
  display: inline-flex;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  justify-content: center;
  line-height: 1.2;
  min-width: 160px;
  padding: 0.875rem 2rem !important;
  text-align: center;
}

.etwaz-actions.etwaz-actions-inline {
  flex-wrap: nowrap;
}

.etwaz-actions.etwaz-actions-inline > .etwaz-btn-secondary,
.etwaz-actions.etwaz-actions-inline > .etwaz-btn-danger,
.etwaz-actions.etwaz-actions-inline > .etwaz-submit {
  flex: 1 1 0;
  min-width: 0;
}

@media (max-width: 640px) {
  .etwaz-actions.etwaz-actions-inline {
    flex-wrap: nowrap;
  }
}
@media (max-width: 480px) {
  .etwaz-actions.etwaz-actions-inline {
    flex-direction: row;
  }
  .etwaz-actions.etwaz-actions-inline > .etwaz-btn-secondary,
  .etwaz-actions.etwaz-actions-inline > .etwaz-btn-danger,
  .etwaz-actions.etwaz-actions-inline > .etwaz-submit {
    font-size: 0.75rem;
    padding: 0.5rem 0.875rem !important;
  }
  .etwaz-actions.etwaz-actions-archive-stack {
    flex-wrap: wrap;
  }
  .etwaz-actions.etwaz-actions-archive-stack #archive-project-btn {
    flex: 1 1 100%;
    order: 1;
    width: 100%;
  }
  .etwaz-actions.etwaz-actions-archive-stack .etwaz-btn-secondary {
    order: 2;
  }
  .etwaz-actions.etwaz-actions-archive-stack .etwaz-submit {
    order: 3;
  }
}
.etwaz-btn-remove-row {
  background: transparent;
  border: none;
  color: #ef4444;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 24px;
}
.etwaz-btn-remove-row:hover {
  color: #dc2626;
}

@media (max-width: 768px) {
  .etwaz-companies-table-wrapper::-webkit-scrollbar {
    height: 14px;
  }
  .etwaz-companies-table-wrapper::-webkit-scrollbar-thumb {
    min-width: 40px;
  }
  .etwaz-companies-table-wrapper::-webkit-scrollbar-thumb:active {
    background: var(--text);
  }
  .etwaz-companies-table {
    font-size: 0.8125rem;
    min-width: 1200px;
    width: 100%;
  }
  .etwaz-companies-table th:nth-child(1),
  .etwaz-companies-table td:nth-child(1) {
    min-width: 130px;
  }
  .etwaz-companies-table th:nth-child(2),
  .etwaz-companies-table td:nth-child(2) {
    min-width: 170px;
  }
  .etwaz-companies-table th:nth-child(5),
  .etwaz-companies-table td:nth-child(5) {
    min-width: 170px;
  }
  .etwaz-companies-table th,
  .etwaz-companies-table td {
    padding: 0.5rem;
  }
  .etwaz-companies-table .etwaz-input {
    font-size: 0.8125rem;
    padding: 0.4375rem 0.625rem;
  }
  .etwaz-autocomplete-dropdown {
    max-height: 250px;
  }
  .etwaz-autocomplete-item {
    padding: 0.5rem;
  }
  .etwaz-autocomplete-item-name {
    font-size: 0.875rem;
  }
  .etwaz-autocomplete-item-details {
    font-size: 0.6875rem;
  }
}
@media (max-width: 640px) {
  .etwaz-companies-table-wrapper::-webkit-scrollbar {
    height: 10px;
  }
  .etwaz-companies-table-wrapper::-webkit-scrollbar-thumb {
    border: 1px solid #f9fafb;
    min-width: 30px;
  }
  .etwaz-companies-table {
    font-size: 0.75rem;
    min-width: 1000px;
  }
  .etwaz-companies-table th:nth-child(1),
  .etwaz-companies-table td:nth-child(1) {
    min-width: 120px;
  }
  .etwaz-companies-table th:nth-child(2),
  .etwaz-companies-table td:nth-child(2) {
    min-width: 150px;
  }
  .etwaz-companies-table th:nth-child(3),
  .etwaz-companies-table td:nth-child(3) {
    min-width: 100px;
  }
  .etwaz-companies-table th:nth-child(4),
  .etwaz-companies-table td:nth-child(4) {
    min-width: 100px;
  }
  .etwaz-companies-table th:nth-child(5),
  .etwaz-companies-table td:nth-child(5) {
    min-width: 150px;
  }
  .etwaz-companies-table th:nth-child(6),
  .etwaz-companies-table td:nth-child(6) {
    min-width: 120px;
  }
  .etwaz-companies-table th:nth-child(7),
  .etwaz-companies-table td:nth-child(7) {
    min-width: 120px;
  }
  .etwaz-companies-table th:nth-child(8),
  .etwaz-companies-table td:nth-child(8) {
    min-width: 100px;
  }
  .etwaz-companies-table th,
  .etwaz-companies-table td {
    padding: 0.25rem;
  }
  .etwaz-companies-table .etwaz-input {
    font-size: 0.75rem;
    padding: 0.375rem 0.5rem;
  }
  .etwaz-autocomplete-dropdown {
    max-height: 200px;
  }
  .etwaz-autocomplete-item {
    padding: 0.5rem;
  }
  .etwaz-autocomplete-item-name {
    font-size: 0.8125rem;
  }
  .etwaz-autocomplete-item-details {
    font-size: 0.625rem;
  }
  .etwaz-btn-add-row {
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .etwaz-companies-table {
    font-size: 0.6875rem;
    min-width: 900px;
  }
  .etwaz-companies-table th,
  .etwaz-companies-table td {
    padding: 0.25rem;
  }
  .etwaz-companies-table .etwaz-input {
    font-size: 0.6875rem;
    padding: 0.3125rem 0.4375rem;
  }
  .etwaz-companies-table th:nth-child(1),
  .etwaz-companies-table td:nth-child(1) {
    min-width: 110px;
  }
  .etwaz-companies-table th:nth-child(2),
  .etwaz-companies-table td:nth-child(2) {
    min-width: 140px;
  }
  .etwaz-companies-table th:nth-child(3),
  .etwaz-companies-table td:nth-child(3) {
    min-width: 90px;
  }
  .etwaz-companies-table th:nth-child(4),
  .etwaz-companies-table td:nth-child(4) {
    min-width: 90px;
  }
  .etwaz-companies-table th:nth-child(5),
  .etwaz-companies-table td:nth-child(5) {
    min-width: 140px;
  }
  .etwaz-companies-table th:nth-child(6),
  .etwaz-companies-table td:nth-child(6) {
    min-width: 110px;
  }
  .etwaz-companies-table th:nth-child(7),
  .etwaz-companies-table td:nth-child(7) {
    min-width: 110px;
  }
  .etwaz-companies-table th:nth-child(8),
  .etwaz-companies-table td:nth-child(8) {
    min-width: 90px;
  }
}
.etwaz-cookie-banner {
  bottom: 2rem;
  right: 2rem;
  max-width: 360px;
  opacity: 0;
  position: fixed;
  transform: translateY(16px);
  transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1), transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
  width: calc(100% - 4rem);
  z-index: 9999;
}
.etwaz-cookie-banner.etwaz-cookie-banner-visible {
  opacity: 1;
  transform: translateY(0);
}

.etwaz-cookie-banner-content {
  background: #141413;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

.etwaz-cookie-banner-title {
  color: #faf9f5;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.etwaz-cookie-banner-description {
  color: rgba(250, 249, 245, 0.65);
  font-size: 0.8125rem;
  line-height: 1.6;
  margin: 0;
}
.etwaz-cookie-banner-description a {
  color: rgba(250, 249, 245, 0.9);
  text-decoration: underline;
}
.etwaz-cookie-banner-description a:hover {
  color: #faf9f5;
}

.etwaz-cookie-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.etwaz-cookie-banner-row {
  display: flex;
  gap: 0.5rem;
}
.etwaz-cookie-banner-row .etwaz-cookie-btn {
  flex: 1;
}

.etwaz-cookie-btn {
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border: 1.5px solid transparent;
  width: 100%;
}

.etwaz-cookie-btn-accept-all {
  background: var(--submit);
  color: #ffffff;
  border-color: var(--submit);
}
.etwaz-cookie-btn-accept-all:hover {
  background: var(--submit-hover);
  border-color: var(--submit-hover);
}

.etwaz-cookie-btn-customize {
  background: transparent;
  border-color: rgba(250, 249, 245, 0.25);
  color: #faf9f5;
}
.etwaz-cookie-btn-customize:hover {
  background: rgba(250, 249, 245, 0.08);
  border-color: rgba(250, 249, 245, 0.4);
}

.etwaz-cookie-btn-reject {
  background: transparent;
  border-color: rgba(250, 249, 245, 0.25);
  color: #faf9f5;
}
.etwaz-cookie-btn-reject:hover {
  background: rgba(250, 249, 245, 0.08);
  border-color: rgba(250, 249, 245, 0.4);
}

.etwaz-cookie-btn-save {
  background: var(--submit);
  border-color: var(--submit);
  color: #ffffff;
}
.etwaz-cookie-btn-save:hover {
  background: var(--submit-hover);
  border-color: var(--submit-hover);
}

.etwaz-cookie-settings-btn {
  align-items: center;
  background: var(--submit);
  border: none;
  border-radius: 9999px;
  bottom: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  height: 50px;
  justify-content: center;
  left: 2rem;
  position: fixed;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 50px;
  z-index: 9998;
}
.etwaz-cookie-settings-btn:hover {
  background: var(--submit-hover);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}
.etwaz-cookie-settings-btn svg {
  height: 20px;
  width: 20px;
}
@media (max-width: 480px) {
  .etwaz-cookie-settings-btn {
    bottom: 1rem;
    height: 45px;
    left: 1rem;
    width: 45px;
  }
  .etwaz-cookie-settings-btn svg {
    height: 18px;
    width: 18px;
  }
}

.etwaz-cookie-modal-content {
  max-width: 700px;
}

.etwaz-cookie-modal-body {
  max-height: 60vh;
  overflow-y: auto;
  padding: 2rem;
}

.etwaz-cookie-modal-intro {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 2rem 0;
}

.etwaz-cookie-category {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-cookie-category:hover {
  border-color: var(--submit);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.etwaz-cookie-category:last-child {
  margin-bottom: 0;
}

.etwaz-cookie-category-header {
  align-items: flex-start;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
}

.etwaz-cookie-category-info {
  flex: 1;
}

.etwaz-cookie-category-title {
  color: var(--text);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.etwaz-cookie-category-description {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.etwaz-switch-disabled {
  opacity: 0.6;
  pointer-events: none;
}

.etwaz-cookie-modal-footer {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-top: 1.5rem;
}

.etwaz-cookie-policy-link {
  color: var(--submit);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.etwaz-cookie-policy-link:hover {
  color: var(--submit-hover);
  text-decoration: underline;
}

.etwaz-cookie-modal-actions {
  border-top: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  padding: 1.5rem 2rem;
}
@media (max-width: 480px) {
  .etwaz-cookie-modal-actions {
    flex-direction: column-reverse;
  }
  .etwaz-cookie-modal-actions .etwaz-cookie-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .etwaz-cookie-modal-body {
    padding: 1.5rem;
    max-height: 65vh;
  }
  .etwaz-cookie-modal-intro {
    font-size: 0.875rem;
  }
  .etwaz-cookie-category {
    padding: 1rem;
  }
  .etwaz-cookie-category-title {
    font-size: 1rem;
  }
  .etwaz-cookie-category-description {
    font-size: 0.8125rem;
  }
  .etwaz-cookie-modal-actions {
    padding: 1rem 1.5rem;
  }
}
@media (max-width: 640px) {
  .etwaz-cookie-banner {
    bottom: 1rem;
    right: 1rem;
    width: calc(100% - 2rem);
    max-width: 360px;
  }
  .etwaz-cookie-banner-content {
    padding: 1rem;
  }
  .etwaz-cookie-banner-title {
    font-size: 0.9375rem;
  }
  .etwaz-cookie-banner-description {
    font-size: 0.8125rem;
  }
  .etwaz-cookie-btn {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }
  .etwaz-cookie-modal-body {
    padding: 1rem;
    max-height: 70vh;
  }
  .etwaz-cookie-modal-intro {
    font-size: 0.8125rem;
  }
  .etwaz-cookie-category {
    padding: 0.5rem;
  }
  .etwaz-cookie-category-header {
    flex-direction: column;
    gap: 0.5rem;
  }
  .etwaz-cookie-category-title {
    font-size: 0.9375rem;
  }
  .etwaz-cookie-category-description {
    font-size: 0.75rem;
  }
  .etwaz-cookie-modal-actions {
    padding: 0.5rem 1rem;
    flex-direction: column-reverse;
  }
  .etwaz-cookie-settings-btn {
    bottom: 1rem;
    left: 1rem;
    height: 44px;
    width: 44px;
  }
  .etwaz-cookie-settings-btn svg {
    height: 18px;
    width: 18px;
  }
}
@media (max-width: 480px) {
  .etwaz-cookie-banner {
    bottom: 0.5rem;
    right: 0.5rem;
    width: calc(100% - 1rem);
    max-width: none;
  }
  .etwaz-cookie-banner-row {
    flex-direction: column;
  }
  .etwaz-cookie-btn {
    font-size: 0.875rem;
    padding: 0.625rem 1rem;
  }
  .etwaz-cookie-modal-body {
    padding: 0.5rem;
    max-height: 75vh;
  }
  .etwaz-cookie-modal-intro {
    font-size: 0.75rem;
  }
  .etwaz-cookie-category {
    padding: 0.25rem;
  }
  .etwaz-cookie-category-title {
    font-size: 0.875rem;
  }
  .etwaz-cookie-category-description {
    font-size: 0.6875rem;
  }
  .etwaz-cookie-settings-btn {
    bottom: 0.5rem;
    left: 0.5rem;
    height: 40px;
    width: 40px;
  }
  .etwaz-cookie-settings-btn svg {
    height: 16px;
    width: 16px;
  }
}
.etwaz-error-page {
  align-items: center;
  background: #f8f9fa;
  display: flex;
  justify-content: center;
  min-height: calc(100vh - 80px);
  padding: 2rem;
}

.etwaz-error-content {
  max-width: 600px;
  text-align: center;
}

.etwaz-error-code {
  color: #2f3b45;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.etwaz-error-title {
  color: #141413;
  font-size: 2rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
}

.etwaz-error-message {
  color: #6b7280;
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0 0 2rem;
}

.etwaz-error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.etwaz-error-btn {
  border-radius: 8px;
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.etwaz-error-btn-primary {
  background: var(--submit, #96c10f);
  box-shadow: 0 2px 4px rgba(150, 193, 15, 0.2);
  color: white;
}
.etwaz-error-btn-primary:hover {
  background: #6ba836;
  box-shadow: 0 4px 6px rgba(150, 193, 15, 0.3);
}

.etwaz-error-btn-secondary {
  background: transparent;
  border: 2px solid #e5e7eb;
  color: #6b7280;
}
.etwaz-error-btn-secondary:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

.lp-page {
  background: #faf9f5;
  color: #141413;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.lp-page {
  --lp-green: #96c10f;
  --lp-green-dark: #96c10f;
  --lp-green-soft: rgba(150, 193, 15, .12);
  --lp-bg: #faf9f5;
  --lp-ink: #141413;
  --lp-muted: #6b7280;
  --lp-border: #e8e8e4;
  --lp-card-dark: #0f1f0a;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  padding: 10px 20px;
  background: #141413;
  color: #faf9f5;
  line-height: 1.4;
  white-space: nowrap;
}
.lp-btn:hover {
  background: #5e5d59;
  color: #faf9f5;
}
.lp-btn--outline {
  background: transparent;
  border: 2px solid #141413;
  color: #141413;
  padding: 8px 18px;
}
.lp-btn--outline:hover {
  background: #141413;
  color: #faf9f5;
}
.lp-btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
}
.lp-btn--ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.lp-btn--lg {
  font-size: 16px;
  padding: 16px 40px;
}
.lp-btn--full {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.lp-btn--accent {
  background: #96c10f;
  color: #141413;
  box-shadow: 0 2px 10px rgba(150, 193, 15, 0.3);
}
.lp-btn--accent:hover {
  background: #7ea00c;
  color: #141413;
}

.lp-nav {
  position: sticky;
  top: 0;
  z-index: 130;
  background: #faf9f5;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
}
@media (max-width: 767px) {
  .lp-nav {
    padding: 0 20px;
  }
}

.lp-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.lp-nav-logo img {
  height: 28px;
  width: auto;
  display: block;
}

.lp-nav-links {
  display: none;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .lp-nav-links {
    display: flex;
  }
}
.lp-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #141413;
  text-decoration: none;
  position: relative;
}
.lp-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #141413;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lp-nav-links a:hover::after {
  opacity: 1;
}

.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.lp-nav-actions-btns {
  display: none;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .lp-nav-actions-btns {
    display: flex;
  }
}
.lp-nav-actions-btns .lp-btn--ghost {
  background: #141413;
  color: #faf9f5;
  border-color: #141413;
}
.lp-nav-actions-btns .lp-btn--ghost svg {
  color: #faf9f5;
}
.lp-nav-actions-btns .lp-btn--ghost:hover {
  background: #5e5d59;
  color: #faf9f5;
  border-color: #5e5d59;
}

.lp-nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .lp-nav-hamburger {
    display: none;
  }
}
.lp-nav-hamburger span {
  display: block;
  height: 2px;
  background: #141413;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.lp-nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.lp-nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.lp-nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.lp-nav-drawer {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #faf9f5;
  border-bottom: 1px solid rgba(20, 20, 19, 0.08);
  padding: 24px 20px 32px;
  flex-direction: column;
  gap: 4px;
  z-index: 120;
}
.lp-nav-drawer.open {
  display: flex;
}
@media (min-width: 768px) {
  .lp-nav-drawer {
    display: none !important;
  }
}
.lp-nav-drawer > a {
  font-size: 16px;
  font-weight: 500;
  color: rgba(20, 20, 19, 0.6);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(20, 20, 19, 0.07);
}
.lp-nav-drawer > a:hover {
  color: var(--lp-green);
}

.lp-nav-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.lp-nav-drawer-actions .lp-btn {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 13px 20px;
}

.lp-hero-accent {
  color: var(--lp-green);
}

.lp-auth-title .lp-hero-accent {
  color: #141413;
}

.lp-hero {
  text-align: center;
  padding: 64px 24px 56px;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .lp-hero {
    padding: 44px 24px 36px;
  }
}

.lp-hero-title {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: var(--lp-ink);
  margin-bottom: 24px;
}

.lp-hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--lp-muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
@media (max-width: 767px) {
  .lp-hero-subtitle {
    font-size: 16px;
  }
}

.lp-features {
  padding: 32px 24px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .lp-features {
    padding: 24px 24px 32px;
  }
}

.lp-features-slider {
  display: contents;
}
@media (max-width: 1024px) {
  .lp-features-slider {
    display: flex;
    align-items: center;
    gap: 12px;
  }
}

.lp-features-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .lp-features-carousel {
    display: flex;
    flex: 1;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x;
  }
  .lp-features-carousel::-webkit-scrollbar {
    display: none;
  }
}
.lp-features-carousel.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.lp-feature-block {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background: var(--lp-card-dark);
}
@media (max-width: 1024px) {
  .lp-feature-block {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }
}
.lp-feature-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 54, 8, 0.85) 0%, rgba(10, 31, 5, 0.95) 100%);
  z-index: 0;
}

.lp-features-arrow {
  display: none;
}
@media (max-width: 1024px) {
  .lp-features-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--lp-border);
    background: #fff;
    color: var(--lp-ink);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
  }
  .lp-features-arrow:hover {
    background: var(--lp-green);
    border-color: var(--lp-green);
    color: #fff;
  }
  .lp-features-arrow:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
  }
}

.lp-feature-block-inner {
  position: relative;
  z-index: 1;
}

.lp-feature-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-green);
  margin-bottom: 12px;
}

.lp-feature-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 12px;
}

.lp-feature-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

.lp-benefits {
  padding: 48px 24px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 767px) {
  .lp-benefits {
    padding: 36px 24px;
  }
}

.lp-benefits-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--lp-ink);
}

.lp-benefits-body {
  font-size: 17px;
  color: var(--lp-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .lp-benefits-body {
    font-size: 16px;
  }
}

.lp-benefits-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.lp-pricing {
  padding: 48px 24px 56px;
  text-align: center;
}
@media (max-width: 767px) {
  .lp-pricing {
    padding: 36px 16px 44px;
  }
}

.lp-pricing-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-green);
  margin-bottom: 16px;
}

.lp-pricing-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--lp-ink);
  margin-bottom: 24px;
}

.lp-pricing-card {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  padding: 48px 40px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
  text-align: left;
}
@media (max-width: 767px) {
  .lp-pricing-card {
    padding: 36px 24px;
  }
}

.lp-price-amount {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--lp-ink);
  line-height: 1;
}
.lp-price-amount span {
  font-size: 18px;
  font-weight: 500;
  color: var(--lp-muted);
  letter-spacing: 0;
}

.lp-price-period {
  font-size: 14px;
  color: var(--lp-muted);
  margin-top: 4px;
  margin-bottom: 8px;
}

.lp-price-badge {
  display: inline-block;
  background: var(--lp-green-soft);
  color: var(--lp-green);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 32px;
}

.lp-price-badge--corner {
  position: absolute;
  top: 20px;
  right: 24px;
  margin-bottom: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .lp-price-badge--corner {
    right: 16px;
  }
}

.lp-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--lp-ink);
  font-weight: 500;
}
.lp-checklist li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lp-green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 9'%3E%3Cpath d='M1 4l3.5 3.5L11 1' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}

.lp-footer {
  background: #141413;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 767px) {
  .lp-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 20px;
    gap: 20px;
  }
}

.lp-footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.lp-footer-logo img {
  height: 24px;
  width: auto;
}

.lp-footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.lp-footer-links a {
  font-size: 13px;
  color: rgba(250, 249, 245, 0.55);
  text-decoration: none;
  transition: color 0.15s;
}
.lp-footer-links a:hover {
  color: #faf9f5;
}

.lp-footer-copy {
  font-size: 13px;
  color: rgba(250, 249, 245, 0.4);
}

.lp-reviews {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 48px 24px 56px;
  text-align: center;
}
@media (max-width: 767px) {
  .lp-reviews {
    padding: 36px 20px 44px;
  }
}

.lp-reviews-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--lp-ink);
  margin-bottom: 28px;
}

.lp-reviews-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x;
}
.lp-reviews-viewport::-webkit-scrollbar {
  display: none;
}
.lp-reviews-viewport.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.lp-reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .lp-reviews-track {
    gap: 16px;
  }
}

.lp-review-card {
  flex: 0 0 clamp(260px, 28vw, 340px);
  width: clamp(260px, 28vw, 340px);
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  padding: 32px 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  scroll-snap-align: start;
}
@media (max-width: 767px) {
  .lp-review-card {
    flex: 0 0 min(280px, 100vw - 88px);
    width: min(280px, 100vw - 88px);
  }
}

.lp-review-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--lp-ink);
  font-style: italic;
  flex: 1;
  margin-bottom: 24px;
}
.lp-review-text::before {
  content: "“";
  color: var(--lp-green);
  font-size: 32px;
  font-style: normal;
  line-height: 0;
  vertical-align: -14px;
  margin-right: 2px;
}

.lp-review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--lp-border);
  padding-top: 20px;
  margin-top: auto;
}

.lp-review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--lp-ink);
}

.lp-review-role {
  font-size: 13px;
  color: var(--lp-muted);
}

.lp-reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.lp-reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lp-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.lp-reviews-dot.active {
  background: var(--lp-green);
  transform: scale(1.25);
}

.lp-legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}
@media (max-width: 767px) {
  .lp-legal {
    padding: 56px 20px 80px;
  }
}

.lp-legal-hero {
  margin-bottom: 64px;
}

.lp-legal-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--lp-ink);
  margin-bottom: 20px;
}

.lp-legal-intro {
  font-size: 17px;
  color: var(--lp-muted);
  line-height: 1.75;
}

.lp-legal-updated {
  font-size: 13px;
  color: var(--lp-muted);
  margin-top: 12px;
}

.lp-legal-section {
  margin-bottom: 48px;
}
.lp-legal-section h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lp-ink);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--lp-border);
}
.lp-legal-section p {
  font-size: 16px;
  color: var(--lp-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.lp-legal-section ul {
  padding-left: 20px;
  margin-top: 8px;
  margin-bottom: 12px;
}
.lp-legal-section ul li {
  font-size: 16px;
  color: var(--lp-muted);
  line-height: 1.75;
  margin-bottom: 6px;
}

.lp-faq {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
@media (max-width: 767px) {
  .lp-faq {
    padding: 44px 20px 72px;
  }
}

.lp-faq-hero {
  margin-bottom: 56px;
}

.lp-faq-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-green);
  margin-bottom: 16px;
}

.lp-faq-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--lp-ink);
  margin-bottom: 16px;
}

.lp-faq-subtitle {
  font-size: 17px;
  color: var(--lp-muted);
  line-height: 1.7;
}

.lp-faq-list {
  display: flex;
  flex-direction: column;
}

.lp-faq-item {
  border-bottom: 1px solid var(--lp-border);
}
.lp-faq-item:first-child {
  border-top: 1px solid var(--lp-border);
}

.lp-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--lp-ink);
  transition: color 0.15s;
}
.lp-faq-question:hover {
  color: var(--lp-green);
}

.lp-faq-icon {
  flex-shrink: 0;
  color: var(--lp-muted);
  transition: transform 0.25s ease, color 0.15s;
}
.lp-faq-item.open .lp-faq-icon {
  transform: rotate(180deg);
  color: var(--lp-green);
}

.lp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.lp-faq-answer p {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--lp-muted);
  line-height: 1.75;
}

.lp-faq-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 56px;
  padding-top: 40px;
}
.lp-faq-cta p {
  font-size: 15px;
  color: var(--lp-muted);
}

.lp-contact {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
@media (max-width: 767px) {
  .lp-contact {
    padding: 56px 20px 80px;
  }
}

.lp-contact-hero {
  margin-bottom: 48px;
}

.lp-contact-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-green);
  margin-bottom: 16px;
}

.lp-contact-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--lp-ink);
  margin-bottom: 16px;
}

.lp-contact-subtitle {
  font-size: 17px;
  color: var(--lp-muted);
  line-height: 1.7;
}

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

.lp-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-ink);
}
.lp-form-group input,
.lp-form-group textarea {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--lp-ink);
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 4px;
  padding: 12px 16px;
  width: 100%;
  transition: border-color 0.15s;
  outline: none;
}
.lp-form-group input::placeholder,
.lp-form-group textarea::placeholder {
  color: var(--lp-muted);
}
.lp-form-group input:focus,
.lp-form-group textarea:focus {
  border-color: var(--lp-green);
}
.lp-form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.lp-contact-success {
  background: var(--lp-green-soft);
  border: 1px solid var(--lp-green);
  border-radius: 6px;
  padding: 20px 24px;
  color: var(--lp-ink);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.lp-contact-success strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
}

.lp-contact-error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 6px;
  padding: 12px 16px;
  color: #dc2626;
  font-size: 14px;
  margin-top: 4px;
}

.lp-auth {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.lp-auth-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 40px;
}
@media (max-width: 767px) {
  .lp-auth-main {
    padding: 40px 20px;
    align-items: flex-start;
  }
}

.lp-auth-form {
  width: 100%;
  max-width: 480px;
}
.lp-auth-form--wide {
  max-width: 720px;
}
.lp-auth-form--medium {
  max-width: 640px;
}
.lp-auth-form form {
  margin-top: 36px;
}

.lp-auth-title {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--lp-ink);
  margin: 0 0 8px;
}

.lp-auth-subtitle {
  color: var(--lp-muted);
  font-size: 0.9375rem;
  margin: 0;
}

.lp-auth-field {
  margin-bottom: 20px;
}
.lp-auth-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--lp-ink);
  margin-bottom: 6px;
}
.lp-auth-field input[type=text],
.lp-auth-field input[type=email],
.lp-auth-field input[type=password] {
  width: 100%;
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  color: var(--lp-ink);
  background: #fff;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.lp-auth-field input[type=text]:focus,
.lp-auth-field input[type=email]:focus,
.lp-auth-field input[type=password]:focus {
  border-color: var(--lp-green);
  box-shadow: 0 0 0 3px rgba(150, 193, 15, 0.1);
  outline: none;
}
.lp-auth-field input[type=text]::placeholder,
.lp-auth-field input[type=email]::placeholder,
.lp-auth-field input[type=password]::placeholder {
  color: var(--lp-muted);
}
.lp-auth-field--error input {
  border-color: #dc2626 !important;
}

.lp-auth-form .etwaz-password-wrapper input {
  border: 1px solid var(--lp-border) !important;
  border-radius: 8px !important;
  padding: 11px 14px !important;
  font-family: "Inter", sans-serif !important;
  font-size: 0.9375rem !important;
  color: var(--lp-ink) !important;
  background: #fff !important;
  box-sizing: border-box !important;
  display: block !important;
  width: 100% !important;
  box-shadow: none !important;
}
.lp-auth-form .etwaz-password-wrapper input:focus {
  border-color: var(--lp-green) !important;
  box-shadow: 0 0 0 3px rgba(150, 193, 15, 0.1) !important;
  outline: none !important;
}

.lp-auth-error {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  color: #dc2626;
  font-size: 0.875rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.lp-auth-error svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.lp-auth-error-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.lp-auth-error-list {
  margin: 0;
  padding-left: 16px;
}

.lp-auth-field-error {
  color: #dc2626;
  font-size: 0.8125rem;
  margin-top: 4px;
}

.lp-auth-submit {
  margin-top: 28px;
}
.lp-auth-submit .lp-btn {
  width: 100%;
  font-size: 15px;
  padding: 12px 20px;
}

.lp-auth-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.lp-auth-divider {
  border-top: 1px solid var(--lp-border);
  margin-top: 32px;
  padding-top: 20px;
}

.lp-auth-remember {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.lp-auth-remember-label {
  color: var(--lp-muted);
  font-size: 0.875rem;
  cursor: pointer;
}

.lp-auth-links {
  margin-top: 28px;
  font-size: 0.875rem;
  color: var(--lp-muted);
  line-height: 1.8;
}
.lp-auth-links a {
  color: var(--lp-green);
  font-weight: 500;
}
.lp-auth-links a:hover {
  text-decoration: underline;
}

.lp-product .lp-product-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.lp-product .lp-product-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(150, 193, 15, 0.12);
  color: #4a7a00;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lp-product .lp-product-h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #141413;
}
@media (max-width: 720px) {
  .lp-product .lp-product-h2 {
    font-size: 27px;
  }
}
.lp-product .lp-product-center {
  text-align: center;
}
.lp-product .lp-product-lead {
  font-size: 17px;
  color: #6b7280;
  max-width: 640px;
  margin: 18px auto 0;
}
.lp-product .lp-product-paragraph {
  font-size: 15.5px;
  color: #6b7280;
  line-height: 1.65;
}
.lp-product .lp-product-section {
  padding: 88px 0;
}
.lp-product .lp-product-section--alt {
  background: #f0efe8;
}
.lp-product .lp-product-section--cta {
  padding: 0;
}
@media (max-width: 720px) {
  .lp-product .lp-product-section {
    padding: 56px 0;
  }
}
.lp-product .lp-product-hero {
  padding: 84px 0 88px;
}
.lp-product .lp-product-hero .lp-product-hero-title {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
  max-width: 880px;
  margin-top: 16px;
}
.lp-product .lp-product-hero .lp-product-hero-title span {
  color: #96c10f;
}
@media (max-width: 720px) {
  .lp-product .lp-product-hero .lp-product-hero-title {
    font-size: 34px;
  }
}
.lp-product .lp-product-hero .lp-product-hero-sub {
  font-size: 19px;
  color: #6b7280;
  max-width: 600px;
  margin: 22px 0 30px;
}
@media (max-width: 720px) {
  .lp-product .lp-product-hero .lp-product-hero-sub {
    font-size: 16px;
  }
}
.lp-product .lp-product-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.lp-product .lp-product-shot {
  margin-top: 56px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(20, 20, 19, 0.14);
  border: 1px solid #e8e8e4;
}
.lp-product .lp-product-shot-bar {
  height: 34px;
  background: #f0efe8;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  border-bottom: 1px solid #e8e8e4;
}
.lp-product .lp-product-shot-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d8d6cd;
}
.lp-product .lp-product-shot-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #f6f5f0;
  color: #9a9a94;
  font-size: 13.5px;
  text-align: center;
  padding: 24px;
}
.lp-product .lp-product-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.lp-product .lp-product-grid-2--reverse > *:first-child {
  order: 2;
}
@media (max-width: 900px) {
  .lp-product .lp-product-grid-2 {
    grid-template-columns: 1fr;
  }
  .lp-product .lp-product-grid-2--reverse > *:first-child {
    order: 0;
  }
}
.lp-product .lp-product-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
  text-align: left;
}
@media (max-width: 900px) {
  .lp-product .lp-product-problem-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .lp-product .lp-product-problem-grid {
    grid-template-columns: 1fr;
  }
}
.lp-product .lp-product-problem-card {
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 8px;
  padding: 26px 22px;
}
.lp-product .lp-product-problem-card h4 {
  font-size: 15.5px;
  font-weight: 700;
  margin: 0;
}
.lp-product .lp-product-problem-card p {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.55;
}
.lp-product .lp-product-problem-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.lp-product .lp-product-problem-ic {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(232, 80, 80, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e85050;
  flex-shrink: 0;
}
.lp-product .lp-product-feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}
.lp-product .lp-product-feature-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lp-product .lp-product-feature-item h4 {
  font-size: 15.5px;
  font-weight: 700;
  margin: 0;
}
.lp-product .lp-product-feature-item p {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.55;
  padding-left: 48px;
}
.lp-product .lp-product-feature-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lp-product .lp-product-feature-ic {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(150, 193, 15, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a7a00;
  flex-shrink: 0;
}
.lp-product .lp-product-role-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
  text-align: left;
}
@media (max-width: 900px) {
  .lp-product .lp-product-role-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .lp-product .lp-product-role-grid {
    grid-template-columns: 1fr;
  }
}
.lp-product .lp-product-role-card {
  background: #141413;
  border-radius: 8px;
  padding: 26px 22px;
  color: #fff;
}
.lp-product .lp-product-role-card p {
  font-size: 13.5px;
  color: #c7ccd1;
  line-height: 1.6;
}
.lp-product .lp-product-role-tag {
  color: #96c10f;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.lp-product .lp-product-doc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
@media (max-width: 900px) {
  .lp-product .lp-product-doc-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.lp-product .lp-product-doc-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.3;
}
.lp-product .lp-product-doc-chip svg {
  color: #96c10f;
  flex-shrink: 0;
}
.lp-product .lp-product-analysis-card {
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 8px;
  padding: 22px 24px;
}
.lp-product .lp-product-analysis-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid #f0efe8;
}
.lp-product .lp-product-analysis-row:last-child {
  border-bottom: none;
}
.lp-product .lp-product-analysis-lbl {
  font-size: 13.5px;
  color: #6b7280;
}
.lp-product .lp-product-analysis-val {
  font-size: 14px;
  font-weight: 700;
}
.lp-product .lp-product-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.lp-product .lp-product-status--ok {
  background: rgba(150, 193, 15, 0.1);
  color: #4a7a00;
}
.lp-product .lp-product-status--warn {
  background: rgba(240, 160, 48, 0.1);
  color: #a05a00;
}
.lp-product .lp-product-error-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 40px;
  text-align: left;
}
@media (max-width: 720px) {
  .lp-product .lp-product-error-grid {
    grid-template-columns: 1fr;
  }
}
.lp-product .lp-product-error-item {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 8px;
  padding: 16px 18px;
}
.lp-product .lp-product-error-item p {
  margin: 0;
  font-size: 13.5px;
  color: #333;
  line-height: 1.5;
}
.lp-product .lp-product-error-ic {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(232, 80, 80, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e85050;
  flex-shrink: 0;
}
.lp-product .lp-product-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
@media (max-width: 900px) {
  .lp-product .lp-product-kpi-row {
    grid-template-columns: 1fr 1fr;
  }
}
.lp-product .lp-product-kpi-card {
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 8px;
  padding: 20px;
}
.lp-product .lp-product-kpi-card--accent {
  border-color: rgba(150, 193, 15, 0.3);
}
.lp-product .lp-product-kpi-card--accent .lp-product-kpi-n {
  color: #4a7a00;
}
.lp-product .lp-product-kpi-n {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.lp-product .lp-product-kpi-l {
  font-size: 12px;
  color: #9a9a94;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.lp-product .lp-product-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 720px) {
  .lp-product .lp-product-trust-grid {
    grid-template-columns: 1fr;
  }
}
.lp-product .lp-product-trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 8px;
  padding: 20px 22px;
}
.lp-product .lp-product-trust-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}
.lp-product .lp-product-trust-item p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  padding-left: 48px;
}
.lp-product .lp-product-trust-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lp-product .lp-product-trust-ic {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(150, 193, 15, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a7a00;
  flex-shrink: 0;
}
.lp-product .lp-product-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
  text-align: left;
}
@media (max-width: 900px) {
  .lp-product .lp-product-benefit-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .lp-product .lp-product-benefit-grid {
    grid-template-columns: 1fr;
  }
}
.lp-product .lp-product-benefit-card {
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 8px;
  padding: 24px 22px;
}
.lp-product .lp-product-benefit-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}
.lp-product .lp-product-benefit-card p {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.55;
}
.lp-product .lp-product-benefit-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.lp-product .lp-product-benefit-ic {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(150, 193, 15, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a7a00;
  flex-shrink: 0;
}
.lp-product .lp-product-finalcta {
  background: #141413;
  text-align: center;
  color: #fff;
  padding: 64px 24px;
}
@media (max-width: 720px) {
  .lp-product .lp-product-finalcta {
    padding: 44px 24px;
  }
}
.lp-product .lp-product-finalcta-inner {
  max-width: 720px;
  margin: 0 auto;
}
.lp-product .lp-product-finalcta-inner .lp-product-h2 {
  color: #fff;
  margin-bottom: 14px;
}
.lp-product .lp-product-finalcta-inner p {
  color: #c7ccd1;
  font-size: 16px;
  margin-bottom: 26px;
}

/*# sourceMappingURL=app.css.bb61c82ebcf1.map */
