@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.btn-full {
  background: linear-gradient(135deg, #C23B3B, var(--color-primary));
  color: white;
  padding: 13px 30px;
  border: solid 1px var(--color-primary);
  transition: 300ms;
  cursor: pointer;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  box-shadow: var(--shadow-md);
}
.btn-full:hover {
  background: white;
  color: var(--color-primary);
  transform: translateY(-1px);
}

.btn-empty {
  background: white;
  color: var(--color-primary);
  padding: 13px 30px;
  border-radius: 30px;
  border: solid 1px var(--color-primary);
  transition: 300ms;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.btn-empty:hover {
  background: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 20px;
  box-shadow: none;
}

.btn-empty-disabled {
  background: #f3f4f6;
  color: #9ca3af;
  padding: 13px 30px;
  border-radius: 30px;
  border: solid 1px #d1d5db;
  text-decoration: none;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  cursor: not-allowed;
  opacity: 0.7;
}

.btn-full-white {
  background: white;
  color: var(--color-primary);
  padding: 13px 30px;
  border: solid 1px white;
  transition: 300ms;
  cursor: pointer;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.btn-full-white:hover {
  background: var(--color-primary);
  color: white;
}

.btn-empty-white {
  background: transparent;
  color: white;
  padding: 13px 30px;
  border-radius: 30px;
  border: solid 1px rgba(255, 255, 255, 0.7);
  transition: 300ms;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}
.btn-empty-white:hover {
  background: white;
  color: var(--color-primary);
}

.header {
  padding: 24px;
}
.header__container {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  background: #ffffff;
  border-radius: 999px;
  padding: 12px 24px 12px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 2px 10px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f1f1;
}
.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header__logo span {
  color: var(--color-primary);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__profile {
  position: relative;
}
.header__profile summary {
  list-style: none;
}
.header__profile summary::-webkit-details-marker {
  display: none;
}
.header__profile summary::marker {
  content: "";
}
.header__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #C23B3B, var(--color-primary));
  color: white;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}
.header__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 200px;
  padding: 10px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 20;
}
.header__dropdown-user {
  padding: 8px 12px 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
}
.header__dropdown a,
.header__dropdown button {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-radius: 12px;
  background: none;
  color: var(--color-text);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s ease;
}
.header__dropdown a:hover,
.header__dropdown button:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.header__dropdown form {
  width: 100%;
}
.header__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--color-primary);
  background: white;
  color: var(--color-primary);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.2s ease;
}
.header__link:hover {
  background: var(--color-secondary);
}
.header__link--primary {
  background: linear-gradient(135deg, #C23B3B, var(--color-primary));
  border-color: var(--color-primary);
  color: white;
}
.header__link--primary:hover {
  background: white;
  color: var(--color-primary);
}

@media screen and (max-width: 768px) {
  .header {
    padding: 16px;
  }
  .header__container {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
  }
  .header__nav {
    display: none;
  }
}
.dashboard {
  display: flex;
  min-height: 100vh;
  background: var(--color-bg);
}

.sidebar {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  width: 260px;
  flex-shrink: 0;
  padding: 24px 18px;
  background: var(--color-surface);
  border-right: 1px solid var(--color-border);
  overflow-y: auto;
}
.sidebar__logo {
  margin-bottom: 32px;
  padding: 0 12px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--color-primary);
}
.sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.sidebar__link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 14px;
  background: transparent;
  color: var(--color-text-light);
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}
.sidebar__link i {
  width: 18px;
  text-align: center;
}
.sidebar__link .sidebar__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  margin-left: auto;
  padding: 0 6px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
}
.sidebar__link:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.sidebar__link.is-active {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 700;
}
.sidebar__logout {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

@media screen and (max-width: 900px) {
  .dashboard {
    flex-direction: column;
  }
  .sidebar {
    position: static;
    height: auto;
    width: 100%;
    flex-direction: row;
    align-items: center;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }
  .sidebar__logo {
    margin-bottom: 0;
  }
  .sidebar__nav {
    flex-direction: row;
  }
  .sidebar__logout {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
}
.site-footer {
  margin-top: 40px;
  padding: 28px 24px;
  border-top: 1px solid var(--color-border);
}
.site-footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: 14px;
}
.site-footer__links {
  display: flex;
  gap: 20px;
}
.site-footer__links a {
  color: var(--color-text-light);
  text-decoration: none;
}
.site-footer__links a:hover {
  color: var(--color-primary);
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 24px 70px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
}
.hero h1 {
  margin: 0 0 24px;
  color: var(--color-text);
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.hero p {
  max-width: 580px;
  margin: 0;
  color: var(--color-text-light);
  font-size: 18px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
}

.profile-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(31, 41, 55, 0.08);
}
.profile-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.profile-card__top h3 {
  margin: 0 0 4px;
  font-size: 20px;
}
.profile-card__top p {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-light);
}
.profile-card__avatar {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #C23B3B, var(--color-primary));
  color: white;
  font-size: 24px;
  font-weight: 800;
}
.profile-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.profile-card__tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #f8f7ff;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
}
.profile-card__infos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.profile-card__infos div {
  padding: 16px;
  border-radius: 18px;
  background: var(--color-bg);
}
.profile-card__infos strong,
.profile-card__infos small {
  display: block;
}
.profile-card__infos strong {
  margin-bottom: 4px;
  font-size: 22px;
  color: var(--color-text);
}
.profile-card__infos small {
  color: var(--color-text-light);
}

.features {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 24px;
}
.features .section-heading {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 42px;
}
.features .section-heading span {
  color: var(--color-primary);
  font-weight: 700;
}
.features .section-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.features .section-heading p {
  margin: 16px auto 0;
  max-width: 560px;
  color: var(--color-text-light);
  font-size: 16px;
  line-height: 1.6;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.features__grid--services {
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 22px;
}

.features--services .section-heading h2 {
  font-size: clamp(26px, 3.2vw, 36px);
}
.features--services .feature-card h3 {
  margin-bottom: 14px;
}
.features--services .feature-card p {
  line-height: 1.7;
}

.feature-card {
  padding: 28px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--color-secondary);
  font-size: 22px;
}
.feature-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}
.feature-card p {
  margin: 0;
  color: var(--color-text-light);
  line-height: 1.6;
}

.pricing-highlight {
  max-width: 860px;
  margin: 0 auto;
  padding: 20px 24px 60px;
  text-align: center;
}
.pricing-highlight .section-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.pricing-highlight .section-heading p {
  margin: 16px auto 0;
  max-width: 560px;
  color: var(--color-text-light);
  font-size: 16px;
  line-height: 1.6;
}
.pricing-highlight__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.pricing-highlight__list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
}
.pricing-highlight__list i {
  color: var(--color-text-light);
}
.pricing-highlight__list li:last-child {
  border-color: var(--color-primary);
  background: var(--color-secondary);
  color: var(--color-primary);
}
.pricing-highlight__list li:last-child i {
  color: var(--color-success);
}

.cta-section {
  max-width: 1180px;
  margin: 70px auto;
  padding: 0 24px;
}
.cta-section__card {
  padding: 54px 24px;
  text-align: center;
  border-radius: 34px;
  background: linear-gradient(135deg, #f3f0ff, #ffffff);
  border: 1px solid var(--color-border);
}
.cta-section h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.03em;
}
.cta-section p {
  margin: 0 auto 28px;
  max-width: 560px;
  color: var(--color-text-light);
  font-size: 17px;
  line-height: 1.6;
}

@media screen and (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 60px;
    text-align: center;
  }
  .hero p {
    margin: 0 auto;
  }
  .hero__actions {
    justify-content: center;
  }
  .features__grid {
    grid-template-columns: 1fr;
  }
}
.secretaries-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px;
}
.secretaries-page__heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.secretaries-page__heading span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
}
.secretaries-page__heading h1 {
  margin: 0 0 18px;
  color: var(--color-text);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.secretaries-page__heading p {
  margin: 0 auto;
  max-width: 620px;
  color: var(--color-text-light);
  font-size: 18px;
  line-height: 1.7;
}

.secretaries-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 18px;
}
.secretaries-filters input[type=text],
.secretaries-filters select {
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #fff;
  color: var(--color-text);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}
.secretaries-filters input[type=text]:focus,
.secretaries-filters select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(161, 29, 29, 0.12);
}
.secretaries-filters input[type=text] {
  flex: 1;
  min-width: 200px;
}
.secretaries-filters select {
  cursor: pointer;
}
.secretaries-filters .btn-sm {
  flex-shrink: 0;
}

.secretaries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.secretary-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
  padding: 26px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}
.secretary-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.secretary-card__header h2 {
  margin: 0 0 4px;
  color: var(--color-text);
  font-size: 20px;
  line-height: 1.2;
}
.secretary-card__header p {
  margin: 0;
  color: var(--color-text-light);
  font-size: 14px;
}
.secretary-card__avatar {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #C23B3B, var(--color-primary));
  color: white;
  font-size: 24px;
  font-weight: 800;
}
.secretary-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.secretary-card__body {
  flex: 1;
}
.secretary-card__info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--color-text);
  font-size: 15px;
}
.secretary-card__description {
  margin: 18px 0 0;
  color: var(--color-text-light);
  line-height: 1.6;
}
.secretary-card__footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.secretary-card__footer .btn-sm {
  margin-left: auto;
}
.secretary-card__badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
}

.secretaries-empty {
  grid-column: 1/-1;
  padding: 48px 24px;
  text-align: center;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 28px;
}
.secretaries-empty h2 {
  margin: 0 0 8px;
  color: var(--color-text);
}
.secretaries-empty p {
  margin: 0;
  color: var(--color-text-light);
}

.secretaries-pagination {
  margin-top: 40px;
}

@media screen and (max-width: 1000px) {
  .secretaries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 700px) {
  .secretaries-filters {
    flex-direction: column;
    align-items: stretch;
  }
  .secretaries-filters input[type=text],
  .secretaries-filters select,
  .secretaries-filters .btn-sm {
    width: 100%;
  }
}
@media screen and (max-width: 680px) {
  .secretaries-page {
    padding: 56px 18px;
  }
  .secretaries-grid {
    grid-template-columns: 1fr;
  }
}
.proposal-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 80px 24px;
}
.proposal-page__heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}
.proposal-page__heading span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
}
.proposal-page__heading h1 {
  margin: 0 0 18px;
  color: var(--color-text);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.proposal-page__heading p {
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: 18px;
  line-height: 1.7;
}

.proposal-form {
  padding: 34px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
}
.proposal-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.proposal-form__success {
  margin-bottom: 22px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #ecfdf5;
  color: #16a34a;
  font-weight: 700;
}
.proposal-form .btn-full {
  margin-top: 24px;
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: #fff;
  color: var(--color-text);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(161, 29, 29, 0.12);
}
.form-group select {
  cursor: pointer;
}
.form-group textarea {
  resize: vertical;
}
.form-group small {
  display: block;
  margin-top: 6px;
  color: #ef4444;
  font-size: 13px;
  font-weight: 600;
}

@media screen and (max-width: 700px) {
  .proposal-form {
    padding: 24px;
  }
  .proposal-form__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.secretary-profile {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 24px;
}
.secretary-profile__back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}
.secretary-profile__back:hover {
  text-decoration: underline;
}
.secretary-profile__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  align-items: start;
}
.secretary-profile__card, .secretary-profile__section {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
}
.secretary-profile__card {
  position: sticky;
  top: 24px;
  padding: 30px;
  text-align: center;
}
.secretary-profile__card .btn-full {
  width: 100%;
  margin-top: 24px;
}
.secretary-profile__card h1 {
  margin: 18px 0 8px;
  color: var(--color-text);
  font-size: 28px;
  line-height: 1.1;
}
.secretary-profile__card p {
  margin: 0;
  color: var(--color-text-light);
  line-height: 1.5;
}
.secretary-profile__avatar {
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #C23B3B, var(--color-primary));
  color: white;
  font-size: 42px;
  font-weight: 800;
}
.secretary-profile__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.secretary-profile__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: #ecfdf5;
  color: #16a34a;
  font-size: 14px;
  font-weight: 700;
}
.secretary-profile__infos {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  text-align: left;
}
.secretary-profile__infos div {
  padding: 15px;
  border-radius: 18px;
  background: var(--color-bg);
}
.secretary-profile__infos span {
  display: block;
  margin-bottom: 4px;
  color: var(--color-text-light);
  font-size: 13px;
}
.secretary-profile__infos strong {
  display: block;
  color: var(--color-text);
  font-size: 15px;
  word-break: break-word;
}
.secretary-profile__content {
  display: grid;
  gap: 24px;
}
.secretary-profile__section {
  padding: 34px;
}
.secretary-profile__section h2 {
  margin: 10px 0 14px;
  color: var(--color-text);
  font-size: 30px;
  letter-spacing: -0.03em;
}
.secretary-profile__section p {
  margin: 0;
  color: var(--color-text-light);
  font-size: 17px;
  line-height: 1.7;
}
.secretary-profile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.secretary-profile__tags span {
  padding: 10px 14px;
  border-radius: var(--radius-full);
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
}
.secretary-profile__cta {
  background: linear-gradient(135deg, #f3f0ff, #ffffff);
}
.secretary-profile__cta .btn-full {
  margin-top: 24px;
}

.section-label {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: var(--radius-full);
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
}

@media screen and (max-width: 900px) {
  .secretary-profile {
    padding: 50px 18px;
  }
  .secretary-profile__grid {
    grid-template-columns: 1fr;
  }
  .secretary-profile__card {
    position: static;
  }
}
.register-page {
  max-width: 560px;
  margin: 0 auto;
  padding: 80px 24px;
}
.register-page__heading {
  margin: 0 auto 42px;
  text-align: center;
}
.register-page__heading span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
}
.register-page__heading h1 {
  margin: 0 0 18px;
  color: var(--color-text);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.register-page__heading p {
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: 18px;
  line-height: 1.7;
}

.role-choice {
  display: flex;
  gap: 20px;
}
.role-choice .role-choice__option {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition);
}
.role-choice .role-choice__option:has(input:checked) {
  border-color: var(--color-primary);
  background: var(--color-secondary);
  color: var(--color-primary);
}
.role-choice .role-choice__option input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  border: 2px solid var(--color-border);
  border-radius: 50%;
  background: white;
  cursor: pointer;
  transition: none;
}
.role-choice .role-choice__option input[type=radio]:checked {
  border-color: var(--color-primary);
  background: var(--color-primary);
  box-shadow: inset 0 0 0 3px white;
}
.role-choice .role-choice__option input[type=radio]:focus {
  box-shadow: none;
}
.role-choice .role-choice__option input[type=radio]:focus:checked {
  box-shadow: inset 0 0 0 3px white;
}
.role-choice .role-choice__option span {
  line-height: 1;
}

.register-form {
  padding: 34px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
}
.register-form__success {
  margin-bottom: 22px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #ecfdf5;
  color: #16a34a;
  font-weight: 700;
}
.register-form .btn-full {
  margin-top: 24px;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 700px) {
  .register-form {
    padding: 24px;
  }
}
.login-page {
  max-width: 480px;
  margin: 0 auto;
  padding: 80px 24px;
}
.login-page__heading {
  margin: 0 auto 42px;
  text-align: center;
}
.login-page__heading span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
}
.login-page__heading h1 {
  margin: 0 0 18px;
  color: var(--color-text);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.login-page__heading p {
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: 18px;
  line-height: 1.7;
}

.login-form {
  padding: 34px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
}
.login-form__error {
  margin-bottom: 22px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fef2f2;
  color: #ef4444;
  font-weight: 700;
}
.login-form__success {
  margin-bottom: 22px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #ecfdf5;
  color: #16a34a;
  font-weight: 700;
}
.login-form__remember {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.login-form__remember label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-light);
  font-size: 14px;
  font-weight: 500;
}
.login-form__remember input {
  width: auto;
}
.login-form__remember a {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.login-form__remember a:hover {
  text-decoration: underline;
}
.login-form .btn-full {
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 700px) {
  .login-form {
    padding: 24px;
  }
}
.dashboard__content {
  flex: 1;
  padding: 40px;
}

.dashboard-page h1 {
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
}
.dashboard-page p {
  margin-bottom: 24px;
  color: var(--color-text-light);
}

.order-status {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 1160px;
  margin-bottom: 24px;
  padding: 16px 20px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
}
.order-status--pending {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.order-status--signed {
  background: #ecfdf5;
  color: #16a34a;
}
.order-status .btn-sm,
.order-status form {
  margin-left: auto;
}

.dashboard-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 18px;
  max-width: 760px;
  padding: 34px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
}
.dashboard-form__success {
  grid-column: 1/-1;
  margin-bottom: 22px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #ecfdf5;
  color: #16a34a;
  font-weight: 700;
}
.dashboard-form input:disabled {
  background: var(--color-bg);
  color: var(--color-text-light);
  cursor: not-allowed;
}
.dashboard-form .form-group:has(textarea),
.dashboard-form .form-group:has(.avatar-upload) {
  grid-column: 1/-1;
}
.dashboard-form .btn-full {
  grid-column: 1/-1;
  margin-top: 8px;
}

.avatar-upload {
  display: flex;
  align-items: center;
  gap: 18px;
}
.avatar-upload__preview {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #C23B3B, var(--color-primary));
  color: white;
  font-size: 24px;
  font-weight: 800;
}
.avatar-upload__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avatar-upload input[type=file] {
  font-size: 14px;
  color: var(--color-text-light);
}
.avatar-upload input[type=file]::file-selector-button {
  margin-right: 12px;
  padding: 10px 18px;
  border: solid 1px var(--color-primary);
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #C23B3B, var(--color-primary));
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}
.avatar-upload input[type=file]::file-selector-button:hover {
  background: white;
  color: var(--color-primary);
}

.dashboard-widgets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1100px;
}

.dashboard-widget {
  padding: 28px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}
.dashboard-widget h2 {
  margin: 0 0 18px;
  color: var(--color-text);
  font-size: 18px;
}
.dashboard-widget__empty {
  margin: 0;
  color: var(--color-text-light);
  font-size: 14px;
}

.upcoming-missions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.upcoming-mission {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  text-decoration: none;
  transition: var(--transition);
}
.upcoming-mission:hover {
  border-color: var(--color-primary);
  background: var(--color-bg);
}
.upcoming-mission__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--color-secondary);
  color: var(--color-primary);
}
.upcoming-mission__date span {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
}
.upcoming-mission__date small {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.upcoming-mission__body {
  flex: 1;
  min-width: 0;
}
.upcoming-mission__body strong {
  display: block;
  color: var(--color-text);
  font-size: 14px;
}
.upcoming-mission__body p {
  margin: 2px 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--color-text-light);
  font-size: 12px;
}
.upcoming-mission__price {
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 800;
}

.order-show-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: start;
  gap: 24px;
  max-width: 1160px;
}
.order-show-grid .dashboard-form {
  max-width: none;
}

.order-files {
  padding: 28px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}
.order-files h2 {
  margin: 0 0 16px;
  color: var(--color-text);
  font-size: 16px;
}
.order-files__upload {
  margin-bottom: 18px;
}
.order-files__upload input[type=file] {
  display: none;
}
.order-files__dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 22px 14px;
  border: 2px dashed var(--color-border);
  border-radius: 16px;
  color: var(--color-text-light);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.order-files__dropzone i {
  font-size: 20px;
  color: var(--color-primary);
}
.order-files__dropzone span {
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
}
.order-files__dropzone small {
  font-size: 11px;
}
.order-files__dropzone:hover {
  border-color: var(--color-primary);
  background: var(--color-secondary);
}
.order-files__error {
  display: block;
  margin-top: 8px;
  color: #ef4444;
  font-size: 12px;
  font-weight: 600;
}
.order-files__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.order-files__empty {
  margin: 0;
  color: var(--color-text-light);
  font-size: 13px;
}

.order-file {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
}
.order-file__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--color-bg);
  color: var(--color-primary);
}
.order-file__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.order-file__body a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.order-file__body a:hover {
  color: var(--color-primary);
}
.order-file__meta {
  color: var(--color-text-light);
  font-size: 11px;
}
.order-file__delete {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 8px;
  background: none;
  color: var(--color-text-light);
  cursor: pointer;
  transition: var(--transition);
}
.order-file__delete:hover {
  background: #fef2f2;
  color: #ef4444;
}

@media screen and (max-width: 900px) {
  .dashboard-widgets {
    grid-template-columns: 1fr;
  }
  .order-show-grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 700px) {
  .dashboard-form {
    grid-template-columns: 1fr;
  }
}
.conversations-table-wrapper {
  max-width: 900px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow-x: auto;
}

.conversations-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  table-layout: fixed;
}
.conversations-table thead th {
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
  text-align: left;
  color: var(--color-text-light);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.conversations-table thead th:nth-child(1) {
  width: 34%;
}
.conversations-table thead th:nth-child(2) {
  width: 46%;
}
.conversations-table thead th:nth-child(3) {
  width: 20%;
}
.conversations-table tbody tr {
  position: relative;
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}
.conversations-table tbody tr:last-child {
  border-bottom: none;
}
.conversations-table tbody tr:hover {
  background: var(--color-bg);
}
.conversations-table tbody tr.is-unread {
  background: var(--color-secondary);
}
.conversations-table tbody tr.is-unread:hover {
  background: var(--color-secondary);
}
.conversations-table tbody tr.is-unread .conversations-table__name {
  font-weight: 800;
}
.conversations-table tbody tr.is-unread .conversations-table__preview {
  color: var(--color-text);
  font-weight: 600;
}
.conversations-table td {
  padding: 12px 20px;
  vertical-align: middle;
}
.conversations-table__contact {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.conversations-table__contact::after {
  content: "";
  position: absolute;
  inset: 0;
}
.conversations-table__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #C23B3B, var(--color-primary));
  color: white;
  font-size: 13px;
  font-weight: 800;
}
.conversations-table__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.conversations-table__name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
}
.conversations-table__badge {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}
.conversations-table__preview {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--color-text-light);
  font-size: 13px;
}
.conversations-table__date {
  white-space: nowrap;
  color: var(--color-text-light);
  font-size: 12px;
}
.conversations-table__empty {
  padding: 40px 20px;
  text-align: center;
  color: var(--color-text-light);
}

.conversation-thread {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
  max-height: 55vh;
  margin: 24px 0;
  padding: 24px;
  overflow-y: auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.conversation-message {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 75%;
}
.conversation-message__bubble {
  padding: 12px 16px;
  border-radius: 18px 18px 18px 4px;
  background: var(--color-secondary);
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.5;
}
.conversation-message__date {
  margin-top: 4px;
  padding: 0 4px;
  color: var(--color-text-light);
  font-size: 12px;
}
.conversation-message.is-mine {
  align-self: flex-end;
  align-items: flex-end;
}
.conversation-message.is-mine .conversation-message__bubble {
  border-radius: 18px 18px 4px 18px;
  background: var(--color-primary);
  color: white;
}

.conversation-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  padding: 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}
.conversation-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: #fff;
  color: var(--color-text);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  resize: vertical;
  outline: none;
}
.conversation-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(161, 29, 29, 0.12);
}
.conversation-form small {
  color: #ef4444;
  font-size: 13px;
  font-weight: 600;
}
.conversation-form .btn-full {
  align-self: flex-end;
}

.quotes-section {
  max-width: 760px;
  margin-top: 40px;
}
.quotes-section h2 {
  margin-bottom: 16px;
  color: var(--color-text);
  font-size: 22px;
}
.quotes-section__empty {
  margin-bottom: 20px;
  color: var(--color-text-light);
}

.quote-card {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
  padding: 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}
.quote-card--accepted {
  border-color: var(--color-success);
}
.quote-card--declined {
  opacity: 0.6;
}
.quote-card__price {
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 800;
}
.quote-card__infos {
  flex: 1;
  min-width: 200px;
}
.quote-card__infos span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-light);
  font-size: 14px;
}
.quote-card__infos p {
  margin: 6px 0 0;
  color: var(--color-text);
}
.quote-card__status {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.quote-card__status form {
  display: inline-flex;
}
.quote-card__status .btn-full,
.quote-card__status .btn-empty {
  padding: 10px 18px;
  font-size: 14px;
}
.quote-card__badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
}

.quote-toggle {
  margin-top: 20px;
}
.quote-toggle summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: linear-gradient(135deg, #C23B3B, var(--color-primary));
  border: solid 1px var(--color-primary);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: 300ms;
}
.quote-toggle summary::-webkit-details-marker {
  display: none;
}
.quote-toggle summary::marker {
  display: none;
  content: "";
}
.quote-toggle summary::after {
  content: "+";
  font-size: 18px;
  line-height: 1;
}
.quote-toggle summary:hover {
  background: white;
  color: var(--color-primary);
  transform: translateY(-1px);
}
.quote-toggle[open] summary::after {
  content: "−";
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  padding: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}
.quote-form .btn-full {
  align-self: flex-start;
  margin-top: 8px;
}

.orders-table thead th:nth-child(1) {
  width: 34%;
}
.orders-table thead th:nth-child(2) {
  width: 20%;
}
.orders-table thead th:nth-child(3) {
  width: 20%;
}
.orders-table thead th:nth-child(4) {
  width: 26%;
}
.orders-table__price {
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 800;
}
.orders-table__action {
  position: relative;
  z-index: 1;
  text-align: right;
}

.about-hero {
  max-width: 780px;
  margin: 0 auto;
  padding: 90px 24px 60px;
  text-align: center;
}
.about-hero__badge {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
}
.about-hero h1 {
  margin: 0 0 10px;
  color: var(--color-text);
  font-size: clamp(38px, 6vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.about-hero__role {
  margin: 0;
  color: var(--color-text-light);
  font-size: 18px;
  font-weight: 600;
}
.about-hero__quote {
  margin: 34px 0 0;
  padding: 0;
  border: none;
  color: var(--color-primary);
  font-size: clamp(20px, 3vw, 26px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.4;
}

.about-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.about-section {
  margin-bottom: 48px;
}
.about-section:last-child {
  margin-bottom: 0;
}
.about-section__label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.about-section p {
  margin: 0 0 18px;
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.75;
}
.about-section p:last-child {
  margin-bottom: 0;
}
.about-section ul {
  margin: 0 0 18px;
  padding-left: 22px;
  list-style: disc;
}
.about-section ul:last-child {
  margin-bottom: 0;
}
.about-section li {
  margin-bottom: 8px;
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.6;
}
.about-section li:last-child {
  margin-bottom: 0;
}
.about-section a {
  color: var(--color-primary);
  font-weight: 600;
}

.about-cta__contacts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.about-cta__contacts .btn-full,
.about-cta__contacts .btn-empty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 700px) {
  .about-hero {
    padding-top: 60px;
  }
  .about-section p {
    font-size: 16px;
  }
}
.platforms-diagnostic {
  max-width: 900px;
  margin-bottom: 40px;
  padding: 28px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}
.platforms-diagnostic h2 {
  margin: 0 0 6px;
  color: var(--color-text);
  font-size: 20px;
}
.platforms-diagnostic__intro {
  margin: 0 0 20px;
  color: var(--color-text-light);
  font-size: 14px;
}
.platforms-diagnostic__questions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 18px;
}
.platforms-diagnostic__result {
  margin-top: 24px;
  padding: 20px;
  border-radius: 18px;
  background: var(--color-secondary);
}
.platforms-diagnostic__result h3 {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: 16px;
}
.platforms-diagnostic__result p {
  margin: 0;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.6;
}
.platforms-diagnostic__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.platforms-diagnostic__choice {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
}
.platforms-diagnostic__note {
  margin-top: 12px !important;
  font-weight: 600;
}

.platforms-list {
  max-width: 900px;
}
.platforms-list h2 {
  margin: 0 0 18px;
  color: var(--color-text);
  font-size: 20px;
}
.platforms-list__disclaimer {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--color-bg);
  color: var(--color-text-light);
  font-size: 13px;
  line-height: 1.6;
}

.platform-card {
  display: flex;
  gap: 18px;
  margin-bottom: 16px;
  padding: 22px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}
.platform-card__rank {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #C23B3B, var(--color-primary));
  color: white;
  font-size: 13px;
  font-weight: 800;
}
.platform-card__body {
  flex: 1;
  min-width: 0;
}
.platform-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}
.platform-card__top strong {
  color: var(--color-text);
  font-size: 17px;
}
.platform-card__note {
  flex-shrink: 0;
  font-size: 13px;
}
.platform-card__profile {
  margin: 0 0 12px;
  color: var(--color-text-light);
  font-size: 13px;
  font-weight: 600;
}
.platform-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.platform-card__price {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
}
.platform-card__price--free {
  background: #ecfdf5;
  color: #16a34a;
}
.platform-card__price--paid {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.platform-card__features {
  color: var(--color-text-light);
  font-size: 13px;
}
.platform-card__why {
  margin: 0 0 14px;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.6;
}

@media screen and (max-width: 700px) {
  .platforms-diagnostic__questions {
    grid-template-columns: 1fr;
  }
  .platform-card {
    flex-direction: column;
  }
}
.signature-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 24px;
}

.signature-card {
  padding: 40px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
}
.signature-card__badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
}
.signature-card h1 {
  margin: 0 0 24px;
  color: var(--color-text);
  font-size: 28px;
  letter-spacing: -0.02em;
}
.signature-card__summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 18px;
  background: var(--color-bg);
}
.signature-card__summary span {
  display: block;
  margin-bottom: 4px;
  color: var(--color-text-light);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.signature-card__summary strong {
  color: var(--color-text);
  font-size: 15px;
}
.signature-card__description {
  margin: 0 0 24px;
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.6;
}
.signature-card__done {
  text-align: center;
}
.signature-card__done i {
  font-size: 40px;
  color: var(--color-success);
  margin-bottom: 16px;
}
.signature-card__done p {
  margin: 0 0 8px;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.6;
}
.signature-card__note {
  color: var(--color-text-light) !important;
  font-size: 13px !important;
}

.signature-form__confirm {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 20px;
  color: var(--color-text);
  font-size: 13px;
  line-height: 1.5;
}
.signature-form__confirm input {
  width: auto;
  margin-top: 2px;
  accent-color: var(--color-primary);
}
.signature-form .btn-full {
  width: 100%;
}

@media screen and (max-width: 600px) {
  .signature-card__summary {
    grid-template-columns: 1fr;
  }
}
.error-page {
  max-width: 560px;
  margin: 0 auto;
  padding: 120px 24px;
  text-align: center;
}
.error-page__code {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 800;
}
.error-page h1 {
  margin: 0 0 14px;
  color: var(--color-text);
  font-size: clamp(30px, 5vw, 42px);
  letter-spacing: -0.03em;
}
.error-page p {
  margin: 0 0 30px;
  color: var(--color-text-light);
  font-size: 16px;
  line-height: 1.6;
}

:root {
  --color-primary: #A11D1D;
  --color-primary-hover: #7E1616;
  --color-secondary: #FBEAEA;
  --color-bg: #FAFAFC;
  --color-surface: #FFFFFF;
  --color-text: #1F2937;
  --color-text-light: #6B7280;
  --color-border: #E5E7EB;
  --color-success: #22C55E;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 30px rgba(161, 29, 29, 0.08);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 999px;
  --radius-full: 999px;
  --transition: 200ms ease;
}

.p-all {
  padding-inline: 50px;
}
@media (max-width: 500px) {
  .p-all {
    padding-inline: 20px;
  }
}

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

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Poppins", sans-serif;
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*# sourceMappingURL=app.css.map */
