@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;600;700&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #1a1a2e;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

a {
  color: #ae0a68;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: rgb(125.7717391304, 7.2282608696, 75.1739130435);
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  color: #1e3a5f;
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}
.btn--primary {
  background: linear-gradient(135deg, #ae0a68 0%, #fc044a 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(174, 10, 104, 0.3);
}
.btn--primary:hover {
  box-shadow: 0 12px 30px rgba(174, 10, 104, 0.4);
  color: #ffffff;
}
.btn--outline {
  background: transparent;
  color: #ae0a68;
  border: 2px solid #ae0a68;
}
.btn--outline:hover {
  background: #ae0a68;
  color: #ffffff;
}
.btn--ghost {
  background: transparent;
  color: #1e3a5f;
  padding: 14px 16px;
}
.btn--ghost:hover {
  color: #ae0a68;
  transform: none;
}
.btn--lg {
  padding: 18px 48px;
  font-size: 16px;
  border-radius: 12px;
}
.btn--white {
  background: #ffffff;
  color: #ae0a68;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
}
.btn--white:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  color: #ae0a68;
}

.section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
}
@media (max-width: 480px) {
  .section {
    padding: 48px 0;
  }
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
@media (max-width: 768px) {
  .section__header {
    margin-bottom: 48px;
  }
}
@media (max-width: 480px) {
  .section__header {
    margin-bottom: 32px;
  }
}
.section__header h2 {
  font-size: 32px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .section__header h2 {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .section__header h2 {
    font-size: 20px;
  }
}
.section__header p {
  font-size: 18px;
  color: #4b5563;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .section__header p {
    font-size: 15px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 32px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 768px) {
  .site-header {
    padding: 12px 16px;
  }
}
@media (max-width: 480px) {
  .site-header {
    padding: 8px;
  }
}
.site-header.is-scrolled .site-header__inner {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
}

.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 32px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .site-header__inner {
    padding: 12px 16px;
  }
}
@media (max-width: 480px) {
  .site-header__inner {
    padding: 8px 12px;
  }
}

.site-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-header__logo svg {
  display: block;
  width: 220px;
  height: auto;
}
@media (max-width: 768px) {
  .site-header__logo svg {
    width: 180px;
  }
}
@media (max-width: 480px) {
  .site-header__logo svg {
    width: 150px;
  }
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .site-header__nav {
    display: none;
  }
}

.site-header__link {
  padding: 8px 16px;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.site-header__link:hover {
  color: #ae0a68;
  background: rgba(174, 10, 104, 0.05);
}
.site-header__link--active {
  color: #ae0a68;
  font-weight: 600;
}

.site-header__cta {
  margin-left: 12px;
}

.site-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
@media (max-width: 768px) {
  .site-header__burger {
    display: flex;
  }
}
.site-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1e3a5f;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.site-header__mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.site-header__mobile-nav.is-open {
  display: flex;
}
.site-header__mobile-nav a {
  font-size: 20px;
  font-weight: 600;
  color: #1e3a5f;
  text-decoration: none;
}
.site-header__mobile-nav a:hover {
  color: #ae0a68;
}

.site-header__mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #1e3a5f;
}
.site-header__mobile-close svg {
  width: 28px;
  height: 28px;
}

.hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 30%, #f0efeb 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    padding: 120px 0 64px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 100px 0 48px;
  }
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}
.hero::before {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #ae0a68 0%, #fc044a 100%);
  top: -200px;
  right: -150px;
}
@media (max-width: 768px) {
  .hero::before {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
  }
}
.hero::after {
  width: 300px;
  height: 300px;
  background: #fc044a;
  bottom: -100px;
  left: -100px;
}
@media (max-width: 768px) {
  .hero::after {
    width: 200px;
    height: 200px;
  }
}

.hero__inner {
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .hero__inner {
    flex-direction: column;
    text-align: center;
  }
}

.hero__content {
  flex: 1;
  max-width: 560px;
}
@media (max-width: 1024px) {
  .hero__content {
    max-width: 100%;
    order: 1;
  }
}

.hero__title {
  font-size: 48px;
  font-weight: 700;
  color: #1e3a5f;
  line-height: 1.15;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 24px;
  }
}
.hero__title span {
  background: linear-gradient(135deg, #ae0a68 0%, #fc044a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 18px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 480px;
}
@media (max-width: 1024px) {
  .hero__subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 15px;
    margin-bottom: 32px;
  }
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1024px) {
  .hero__actions {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .hero__actions .btn {
    width: 100%;
  }
}

.hero__link {
  color: #4b5563;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero__link:hover {
  color: #ae0a68;
}

.hero__visual {
  flex: 1;
  max-width: 580px;
  position: relative;
}
@media (max-width: 1024px) {
  .hero__visual {
    max-width: 500px;
    order: 2;
  }
}
@media (max-width: 480px) {
  .hero__visual {
    max-width: 100%;
  }
}

.hero__laptop {
  background: #1e3a5f;
  border-radius: 16px;
  padding: 12px 12px 0;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
  position: relative;
}
.hero__laptop::after {
  content: "";
  display: block;
  height: 20px;
  background: rgb(23.88, 46.168, 75.62);
  border-radius: 0 0 10px 10px;
  margin: 0 -12px;
}

.hero__screen {
  background: #ffffff;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.mockup-editor {
  display: flex;
  height: 100%;
}

.mockup-editor__sidebar {
  width: 140px;
  background: #f7f7f8;
  border-right: 1px solid #e5e7eb;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 480px) {
  .mockup-editor__sidebar {
    width: 100px;
  }
}

.mockup-editor__nav-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 10px;
  color: #4b5563;
  white-space: nowrap;
  overflow: hidden;
}
.mockup-editor__nav-item--active {
  background: rgba(174, 10, 104, 0.1);
  color: #ae0a68;
  font-weight: 600;
}
.mockup-editor__nav-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d1d5db;
  flex-shrink: 0;
}
.mockup-editor__nav-item--active .dot {
  background: #ae0a68;
}

.mockup-editor__content {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-editor__title-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}
.mockup-editor__title-bar .bar {
  height: 8px;
  border-radius: 4px;
  background: #e5e7eb;
}
.mockup-editor__title-bar .bar--title {
  width: 45%;
  background: #1e3a5f;
  opacity: 0.2;
}
.mockup-editor__title-bar .bar--subtitle {
  width: 25%;
}

.mockup-editor__lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-editor__line {
  height: 6px;
  border-radius: 3px;
  background: #e5e7eb;
  opacity: 0.6;
}
.mockup-editor__line:nth-child(1) {
  width: 90%;
}
.mockup-editor__line:nth-child(2) {
  width: 75%;
}
.mockup-editor__line:nth-child(3) {
  width: 85%;
}
.mockup-editor__line:nth-child(4) {
  width: 60%;
}
.mockup-editor__line:nth-child(5) {
  width: 80%;
}
.mockup-editor__line:nth-child(6) {
  width: 45%;
}

.trust {
  padding: 48px 0;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
@media (max-width: 480px) {
  .trust__item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

.trust__icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(174, 10, 104, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ae0a68;
}
.trust__icon svg {
  width: 22px;
  height: 22px;
}
@media (max-width: 480px) {
  .trust__icon {
    width: 40px;
    height: 40px;
  }
  .trust__icon svg {
    width: 18px;
    height: 18px;
  }
}

.trust__value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #1e3a5f;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .trust__value {
    font-size: 20px;
  }
}

.trust__label {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-top: 2px;
}

.features {
  background: #f7f7f8;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .features__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 500px;
    margin: 0 auto;
  }
}

.features__card {
  background: #ffffff;
  border-radius: 12px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
}
@media (max-width: 480px) {
  .features__card {
    padding: 32px;
  }
}
.features__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  border-color: rgba(174, 10, 104, 0.15);
}

.features__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(174, 10, 104, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #ae0a68;
}
.features__icon svg {
  width: 28px;
  height: 28px;
}

.features__card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.features__card p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
}

.modules {
  background: #ffffff;
}

.module {
  display: flex;
  align-items: center;
  gap: 64px;
}
@media (max-width: 1024px) {
  .module {
    flex-direction: column;
    gap: 32px;
  }
}
.module + .module {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .module + .module {
    margin-top: 64px;
  }
}
.module--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 1024px) {
  .module--reverse {
    flex-direction: column;
  }
}

.module__content {
  flex: 1;
  max-width: 480px;
}
@media (max-width: 1024px) {
  .module__content {
    max-width: 100%;
    text-align: center;
  }
}

.module__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(174, 10, 104, 0.08);
  color: #ae0a68;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.module__badge svg {
  width: 16px;
  height: 16px;
}

.module__content h3 {
  font-size: 32px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .module__content h3 {
    font-size: 24px;
  }
}

.module__content > p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 32px;
}

.module__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 1024px) {
  .module__features {
    max-width: 400px;
    margin: 0 auto;
  }
}
.module__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #374151;
}
@media (max-width: 1024px) {
  .module__features li {
    text-align: left;
  }
}

.module__check {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.module__check svg {
  width: 12px;
  height: 12px;
  color: #10b981;
}

.module__asterisk {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 8px;
  font-style: italic;
}

.module__visual {
  flex: 1;
  max-width: 540px;
}
@media (max-width: 1024px) {
  .module__visual {
    max-width: 480px;
  }
}
@media (max-width: 480px) {
  .module__visual {
    max-width: 100%;
  }
}

.module__mockup {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.mockup-dashboard {
  padding: 16px;
}

.mockup-dashboard__hero {
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 30%, #f0efeb 100%);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 480px) {
  .mockup-dashboard__hero {
    flex-direction: column;
    gap: 12px;
  }
}

.mockup-dashboard__stat {
  text-align: center;
  flex: 1;
}

.mockup-dashboard__stat-value {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #1e3a5f;
}
@media (max-width: 480px) {
  .mockup-dashboard__stat-value {
    font-size: 18px;
  }
}

.mockup-dashboard__stat-label {
  display: block;
  font-size: 10px;
  color: #6b7280;
  margin-top: 2px;
}

.mockup-dashboard__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 480px) {
  .mockup-dashboard__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mockup-dashboard__card {
  background: #f7f7f8;
  border-radius: 6px;
  padding: 12px;
  text-align: center;
}
.mockup-dashboard__card .icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  margin: 0 auto 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-dashboard__card .icon--blue {
  background: rgba(99, 102, 241, 0.12);
  color: #6366f1;
}
.mockup-dashboard__card .icon--green {
  background: rgba(5, 150, 105, 0.12);
  color: #059669;
}
.mockup-dashboard__card .icon--orange {
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
}
.mockup-dashboard__card .label {
  font-size: 9px;
  color: #6b7280;
  display: block;
}

.testimonials {
  padding: 80px 0;
  background: #f7f7f8;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(174, 10, 104, 0.08);
  color: #ae0a68;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.testimonials__title {
  font-size: 32px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .testimonials__title {
    font-size: 24px;
  }
}

.testimonials__subtitle {
  font-size: 18px;
  color: #6b7280;
  max-width: 560px;
  margin: 0 auto;
}

.testimonials__slider {
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 24px;
}

.testimonials__slide {
  flex: 0 0 calc((100% - 24px * 2) / 3);
  min-width: 0;
}
@media (max-width: 1024px) {
  .testimonials__slide {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}
@media (max-width: 768px) {
  .testimonials__slide {
    flex: 0 0 100%;
  }
}

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.testimonials__arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #1e3a5f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.testimonials__arrow:hover {
  background: #ae0a68;
  border-color: #ae0a68;
  color: #ffffff;
}
.testimonials__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
.testimonials__arrow:disabled:hover {
  background: #ffffff;
  border-color: #d1d5db;
  color: #1e3a5f;
}

.testimonials__dots {
  display: flex;
  gap: 8px;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.testimonials__dot.is-active {
  background: #ae0a68;
  width: 28px;
}

.testimonials__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.3s ease;
  height: 100%;
}
.testimonials__card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonials__stars {
  display: flex;
  gap: 2px;
}

.testimonials__star {
  width: 18px;
  height: 18px;
  color: #f59e0b;
}
.testimonials__star--empty {
  color: #d1d5db;
}

.testimonials__text {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  flex: 1;
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.testimonials__avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #ae0a68 0%, #fc044a 100%);
  flex-shrink: 0;
  overflow: hidden;
}
.testimonials__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials__name {
  font-size: 15px;
  font-weight: 600;
  color: #1e3a5f;
}

.testimonials__role {
  font-size: 12px;
  color: #6b7280;
}

.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 30%, #f0efeb 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .page-hero {
    padding: 120px 0 64px;
  }
}
@media (max-width: 480px) {
  .page-hero {
    padding: 100px 0 48px;
  }
}
.page-hero::before, .page-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
}
.page-hero::before {
  width: 450px;
  height: 450px;
  background: linear-gradient(135deg, #ae0a68 0%, #fc044a 100%);
  top: -180px;
  right: -120px;
}
@media (max-width: 768px) {
  .page-hero::before {
    width: 280px;
    height: 280px;
    top: -100px;
    right: -80px;
  }
}
.page-hero::after {
  width: 280px;
  height: 280px;
  background: #fc044a;
  bottom: -80px;
  left: -80px;
}
@media (max-width: 768px) {
  .page-hero::after {
    width: 180px;
    height: 180px;
  }
}

.page-hero__inner {
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .page-hero__inner {
    flex-direction: column;
    text-align: center;
  }
}

.page-hero__content {
  flex: 1;
  max-width: 540px;
}
@media (max-width: 1024px) {
  .page-hero__content {
    max-width: 100%;
    order: 1;
  }
}

.page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(174, 10, 104, 0.1);
  color: #ae0a68;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.page-hero__badge svg {
  width: 16px;
  height: 16px;
}

.page-hero__title {
  font-size: 48px;
  font-weight: 700;
  color: #1e3a5f;
  line-height: 1.15;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .page-hero__title {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .page-hero__title {
    font-size: 24px;
  }
}
.page-hero__title span {
  background: linear-gradient(135deg, #ae0a68 0%, #fc044a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero__subtitle {
  font-size: 18px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 480px;
}
@media (max-width: 1024px) {
  .page-hero__subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .page-hero__subtitle {
    font-size: 15px;
    margin-bottom: 32px;
  }
}

.page-hero__asterisk {
  font-size: 12px;
  color: #9ca3af;
  font-style: italic;
  margin-top: -32px;
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .page-hero__asterisk {
    text-align: center;
  }
}

.page-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1024px) {
  .page-hero__actions {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .page-hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .page-hero__actions .btn {
    width: 100%;
  }
}

.page-hero__link {
  color: #4b5563;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.page-hero__link:hover {
  color: #ae0a68;
}

.page-hero__visual {
  flex: 1;
  max-width: 580px;
  position: relative;
}
@media (max-width: 1024px) {
  .page-hero__visual {
    max-width: 500px;
    order: 2;
  }
}
@media (max-width: 480px) {
  .page-hero__visual {
    max-width: 100%;
  }
}

.page-hero--has-bg {
  position: relative;
}

.page-hero__bg-img {
  position: absolute;
  right: calc(50% - 580px);
  bottom: 0;
  height: 92%;
  width: auto;
  max-width: none;
  pointer-events: none;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.15) 20%, black 65%), linear-gradient(to bottom, transparent 0%, black 25%);
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.15) 20%, black 65%), linear-gradient(to bottom, transparent 0%, black 25%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}
@media (max-width: 1024px) {
  .page-hero__bg-img {
    right: 0;
    height: 80%;
  }
}
@media (max-width: 768px) {
  .page-hero__bg-img {
    right: -5%;
    height: 65%;
    opacity: 0.25;
  }
}
@media (max-width: 480px) {
  .page-hero__bg-img {
    height: 55%;
    opacity: 0.15;
  }
}

.page-hero__laptop {
  background: #1e3a5f;
  border-radius: 16px;
  padding: 12px 12px 0;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
  position: relative;
}
.page-hero__laptop::after {
  content: "";
  display: block;
  height: 20px;
  background: rgb(23.88, 46.168, 75.62);
  border-radius: 0 0 10px 10px;
  margin: 0 -12px;
}

.page-hero__screen {
  background: #ffffff;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.page-features {
  background: #ffffff;
}

.page-feature {
  display: flex;
  align-items: center;
  gap: 64px;
}
@media (max-width: 1024px) {
  .page-feature {
    flex-direction: column;
    gap: 32px;
  }
}
.page-feature + .page-feature {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .page-feature + .page-feature {
    margin-top: 64px;
  }
}
.page-feature--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 1024px) {
  .page-feature--reverse {
    flex-direction: column;
  }
}

.page-feature__content {
  flex: 1;
  max-width: 480px;
}
@media (max-width: 1024px) {
  .page-feature__content {
    max-width: 100%;
    text-align: center;
  }
}

.page-feature__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(174, 10, 104, 0.08);
  color: #ae0a68;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.page-feature__badge svg {
  width: 16px;
  height: 16px;
}

.page-feature__content h3 {
  font-size: 32px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .page-feature__content h3 {
    font-size: 24px;
  }
}

.page-feature__content > p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 32px;
}

.page-feature__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 1024px) {
  .page-feature__list {
    max-width: 400px;
    margin: 0 auto;
  }
}
.page-feature__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #374151;
}
@media (max-width: 1024px) {
  .page-feature__list li {
    text-align: left;
  }
}

.page-feature__check {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.page-feature__check svg {
  width: 12px;
  height: 12px;
  color: #10b981;
}

.page-feature__visual {
  flex: 1;
  max-width: 560px;
}
@media (max-width: 1024px) {
  .page-feature__visual {
    max-width: 500px;
  }
}
@media (max-width: 480px) {
  .page-feature__visual {
    max-width: 100%;
  }
}

.page-feature__mockup {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-screenshot {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.page-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}
.page-screenshot--placeholder {
  min-height: 280px;
  background: #f7f7f8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 480px) {
  .page-screenshot--placeholder {
    min-height: 200px;
  }
}
.page-screenshot--placeholder::before {
  content: "";
  width: 48px;
  height: 48px;
  background: rgba(174, 10, 104, 0.1);
  border-radius: 999px;
  position: absolute;
  top: calc(50% - 36px);
}
.page-screenshot--placeholder::after {
  content: attr(data-label);
  font-size: 13px;
  color: #9ca3af;
  font-weight: 500;
  text-align: center;
  padding: 16px;
  margin-top: 48px;
}

.mockup-editor-full {
  display: flex;
  height: 100%;
  min-height: 340px;
}

.mockup-editor-full__sidebar {
  width: 160px;
  background: #f7f7f8;
  border-right: 1px solid #e5e7eb;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media (max-width: 480px) {
  .mockup-editor-full__sidebar {
    width: 110px;
  }
}

.mockup-editor-full__nav-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 9px;
  color: #4b5563;
  white-space: nowrap;
  overflow: hidden;
}
.mockup-editor-full__nav-item--active {
  background: rgba(174, 10, 104, 0.1);
  color: #ae0a68;
  font-weight: 600;
}
.mockup-editor-full__nav-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d1d5db;
  flex-shrink: 0;
}
.mockup-editor-full__nav-item--active .dot {
  background: #ae0a68;
}
.mockup-editor-full__nav-item--done .dot {
  background: #10b981;
}

.mockup-editor-full__progress {
  margin-top: auto;
  padding: 8px;
}
.mockup-editor-full__progress .progress-label {
  font-size: 8px;
  color: #9ca3af;
  margin-bottom: 4px;
  display: block;
}
.mockup-editor-full__progress .progress-bar {
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
}
.mockup-editor-full__progress .progress-bar .progress-fill {
  height: 100%;
  width: 35%;
  background: linear-gradient(135deg, #ae0a68 0%, #fc044a 100%);
  border-radius: 2px;
}

.mockup-editor-full__content {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.mockup-editor-full__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 12px;
}
.mockup-editor-full__toolbar .toolbar-title {
  font-size: 11px;
  font-weight: 600;
  color: #1e3a5f;
}
.mockup-editor-full__toolbar .toolbar-actions {
  display: flex;
  gap: 4px;
}
.mockup-editor-full__toolbar .toolbar-btn {
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 8px;
  font-weight: 500;
}
.mockup-editor-full__toolbar .toolbar-btn--save {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.mockup-editor-full__toolbar .toolbar-btn--export {
  background: rgba(174, 10, 104, 0.1);
  color: #ae0a68;
}

.mockup-editor-full__section-title {
  font-size: 10px;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 8px;
}

.mockup-editor-full__textarea {
  flex: 1;
  background: #f7f7f8;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 8px;
  min-height: 80px;
}
.mockup-editor-full__textarea .line {
  height: 5px;
  border-radius: 2px;
  background: #e5e7eb;
  margin-bottom: 4px;
  opacity: 0.6;
}
.mockup-editor-full__textarea .line:nth-child(1) {
  width: 85%;
}
.mockup-editor-full__textarea .line:nth-child(2) {
  width: 70%;
}
.mockup-editor-full__textarea .line:nth-child(3) {
  width: 90%;
}
.mockup-editor-full__textarea .line:nth-child(4) {
  width: 55%;
}
.mockup-editor-full__textarea .line:nth-child(5) {
  width: 75%;
}
.mockup-editor-full__textarea p {
  font-size: 8px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.mockup-editor-full__hint {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  padding: 8px;
  background: rgba(245, 158, 11, 0.06);
  border-radius: 6px;
  border-left: 2px solid #f59e0b;
}
.mockup-editor-full__hint .hint-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #f59e0b;
}
.mockup-editor-full__hint .hint-text {
  font-size: 8px;
  color: #6b7280;
  line-height: 1.4;
}

.mockup-dashboard-full {
  padding: 16px;
}

.mockup-dashboard-full__hero {
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 30%, #f0efeb 100%);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 480px) {
  .mockup-dashboard-full__hero {
    flex-direction: column;
    gap: 8px;
  }
}

.mockup-dashboard-full__stat {
  text-align: center;
  flex: 1;
}

.mockup-dashboard-full__stat-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #1e3a5f;
}
@media (max-width: 480px) {
  .mockup-dashboard-full__stat-value {
    font-size: 15px;
  }
}

.mockup-dashboard-full__stat-label {
  display: block;
  font-size: 9px;
  color: #6b7280;
  margin-top: 2px;
}

.mockup-dashboard-full__shortcuts {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
@media (max-width: 480px) {
  .mockup-dashboard-full__shortcuts {
    flex-wrap: wrap;
  }
}

.mockup-dashboard-full__shortcut {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #f7f7f8;
  border-radius: 6px;
  font-size: 9px;
  color: #4b5563;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .mockup-dashboard-full__shortcut {
    font-size: 8px;
    padding: 8px;
  }
}
.mockup-dashboard-full__shortcut .shortcut-icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mockup-dashboard-full__shortcut .shortcut-icon svg {
  width: 12px;
  height: 12px;
}
.mockup-dashboard-full__shortcut .shortcut-icon--primary {
  background: rgba(174, 10, 104, 0.1);
  color: #ae0a68;
}
.mockup-dashboard-full__shortcut .shortcut-icon--green {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.mockup-dashboard-full__shortcut .shortcut-icon--blue {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}

.mockup-dashboard-full__table-label {
  font-size: 9px;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 8px;
}

.mockup-dashboard-full__table {
  width: 100%;
  border-collapse: collapse;
}
.mockup-dashboard-full__table th {
  font-size: 8px;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  text-align: left;
  padding: 8px 8px;
  border-bottom: 1px solid #e5e7eb;
}
.mockup-dashboard-full__table td {
  font-size: 9px;
  color: #4b5563;
  padding: 8px 8px;
  border-bottom: 1px solid #f7f7f8;
}

.mockup-status {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 500;
}
.mockup-status--paid {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.mockup-status--pending {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}
.mockup-status--overdue {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.mockup-bp {
  display: flex;
  height: 100%;
  min-height: 340px;
}
.mockup-bp__sidebar {
  width: 145px;
  background: #1e293b;
  padding: 10px 6px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .mockup-bp__sidebar {
    width: 100px;
    padding: 6px 4px;
  }
}
.mockup-bp__logo {
  height: 14px;
  width: 70px;
  margin: 0 4px 8px;
}
.mockup-bp__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}
.mockup-bp__selector {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: 5px 7px;
  margin-bottom: 6px;
}
.mockup-bp__selector-name {
  display: block;
  font-size: 7px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mockup-bp__selector-meta {
  display: flex;
  justify-content: space-between;
  font-size: 6px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}
.mockup-bp__gauge {
  padding: 0 4px;
  margin-bottom: 8px;
}
.mockup-bp__gauge-header {
  display: flex;
  justify-content: space-between;
  font-size: 6px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 3px;
}
.mockup-bp__gauge-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.mockup-bp__gauge-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(135deg, #ae0a68 0%, #fc044a 100%);
  border-radius: 2px;
}
.mockup-bp__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.mockup-bp__nav-item {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 7px;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}
@media (max-width: 480px) {
  .mockup-bp__nav-item {
    font-size: 6px;
    padding: 2px 4px;
  }
}
.mockup-bp__nav-item--active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.mockup-bp__nav-item--dashboard {
  margin-bottom: 2px;
}
.mockup-bp__nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
.mockup-bp__nav-item--active .mockup-bp__nav-dot {
  background: rgba(255, 255, 255, 0.25);
}
.mockup-bp__check {
  margin-left: auto;
  font-size: 6px;
  color: #10b981;
}
.mockup-bp__sep {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 4px 6px;
}
.mockup-bp__back {
  font-size: 6px;
  color: rgba(255, 255, 255, 0.3);
  padding: 3px 6px;
}
.mockup-bp__progress {
  padding: 0 6px;
  margin: auto 0 8px;
}
.mockup-bp__progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 6px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 3px;
}
.mockup-bp__progress-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.mockup-bp__progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(135deg, #ae0a68 0%, #fc044a 100%);
  border-radius: 2px;
}
.mockup-bp__user {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.mockup-bp__avatar {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
.mockup-bp__user-info {
  font-size: 7px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
}
.mockup-bp__user-info span {
  display: block;
}
.mockup-bp__user-info span:first-child {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.mockup-bp__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  min-width: 0;
}
.mockup-bp__topbar {
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-bottom: 1px solid #e5e7eb;
  min-height: 26px;
  flex-shrink: 0;
}
.mockup-bp__tab {
  padding: 6px 5px;
  font-size: 7px;
  color: #9ca3af;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .mockup-bp__tab {
    font-size: 6px;
    padding: 5px 3px;
  }
}
.mockup-bp__tab--active {
  color: #ae0a68;
  border-bottom-color: #ae0a68;
  font-weight: 600;
}
.mockup-bp__export {
  margin-left: auto;
  padding: 2px 6px;
  border: 1px solid #e5e7eb;
  border-radius: 3px;
  font-size: 6px;
  color: #6b7280;
  white-space: nowrap;
}
.mockup-bp__topbar-title {
  font-size: 9px;
  font-weight: 600;
  color: #1e3a5f;
  padding: 0 4px;
  white-space: nowrap;
}
.mockup-bp__content {
  flex: 1;
  padding: 8px 10px;
  overflow: hidden;
}
.mockup-bp__year-tabs {
  display: inline-flex;
  margin-bottom: 8px;
}
.mockup-bp__year-tab {
  padding: 2px 7px;
  font-size: 6px;
  color: #9ca3af;
  border: 1px solid #e5e7eb;
  background: #f7f7f8;
}
.mockup-bp__year-tab:first-child {
  border-radius: 3px 0 0 3px;
}
.mockup-bp__year-tab:last-child {
  border-radius: 0 3px 3px 0;
}
.mockup-bp__year-tab:not(:first-child) {
  border-left: none;
}
.mockup-bp__year-tab--active {
  background: #ae0a68;
  color: #fff;
  border-color: #ae0a68;
}
.mockup-bp__table {
  width: 100%;
  border-collapse: collapse;
}
.mockup-bp__table th {
  font-size: 6px;
  font-weight: 600;
  color: #9ca3af;
  text-align: left;
  padding: 3px 4px;
  border-bottom: 1px solid #e5e7eb;
  white-space: nowrap;
}
.mockup-bp__table td {
  font-size: 7px;
  color: #4b5563;
  padding: 3px 4px;
  border-bottom: 1px solid #f7f7f8;
  white-space: nowrap;
}
.mockup-bp__table .positive {
  color: #10b981;
}
.mockup-bp__table .negative {
  color: #ef4444;
}
.mockup-bp__table .bold {
  font-weight: 600;
  color: #1e3a5f;
}

.mockup-fact {
  display: flex;
  height: 100%;
  min-height: 340px;
}
.mockup-fact__sidebar {
  width: 145px;
  background: #064e3b;
  padding: 10px 6px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .mockup-fact__sidebar {
    width: 100px;
    padding: 6px 4px;
  }
}
.mockup-fact__logo {
  height: 14px;
  width: 70px;
  margin: 0 4px 8px;
}
.mockup-fact__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}
.mockup-fact__badge {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  margin-bottom: 4px;
  font-size: 8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.mockup-fact__badge svg {
  width: 10px;
  height: 10px;
  stroke: rgba(255, 255, 255, 0.6);
  fill: none;
  stroke-width: 2;
}
.mockup-fact__kyc {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 3px 8px;
  margin: 0 4px 8px;
  font-size: 6px;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 3px;
}
.mockup-fact__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.mockup-fact__nav-item {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 7px;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}
@media (max-width: 480px) {
  .mockup-fact__nav-item {
    font-size: 6px;
    padding: 2px 4px;
  }
}
.mockup-fact__nav-item--active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.mockup-fact__nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}
.mockup-fact__nav-item--active .mockup-fact__nav-dot {
  background: rgba(255, 255, 255, 0.2);
}
.mockup-fact__sep {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 4px 6px;
}
.mockup-fact__back {
  font-size: 6px;
  color: rgba(255, 255, 255, 0.3);
  padding: 3px 6px;
}
.mockup-fact__user {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: auto;
}
.mockup-fact__avatar {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
.mockup-fact__user-info {
  font-size: 7px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
}
.mockup-fact__user-info span {
  display: block;
}
.mockup-fact__user-info span:first-child {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.mockup-fact__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 10px;
  min-width: 0;
  overflow: hidden;
}
.mockup-fact__month-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 8px;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 8px;
}
.mockup-fact__month-nav .arrow {
  color: #9ca3af;
  font-size: 10px;
}
.mockup-fact__stats {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
  border-radius: 6px;
  padding: 8px;
}
.mockup-fact__stat {
  flex: 1;
  text-align: center;
}
.mockup-fact__stat-value {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #1e3a5f;
}
@media (max-width: 480px) {
  .mockup-fact__stat-value {
    font-size: 9px;
  }
}
.mockup-fact__stat-label {
  display: block;
  font-size: 6px;
  color: #6b7280;
  margin-top: 1px;
}
.mockup-fact__stat--primary .mockup-fact__stat-value {
  color: #059669;
}
.mockup-fact__shortcuts {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}
.mockup-fact__shortcut {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 6px;
  background: #f7f7f8;
  border-radius: 4px;
  font-size: 6px;
  color: #4b5563;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .mockup-fact__shortcut {
    font-size: 5px;
    padding: 3px 4px;
  }
}
.mockup-fact__shortcut-icon {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mockup-fact__shortcut-icon svg {
  width: 8px;
  height: 8px;
}
.mockup-fact__shortcut-icon--emerald {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.mockup-fact__shortcut-icon--blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.mockup-fact__shortcut-icon--purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}
.mockup-fact__shortcut-icon--amber {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}
.mockup-fact__shortcut-count {
  margin-left: auto;
  font-weight: 600;
  color: #1e3a5f;
}
.mockup-fact__section-title {
  font-size: 8px;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 4px;
}
.mockup-fact__table {
  width: 100%;
  border-collapse: collapse;
}
.mockup-fact__table th {
  font-size: 6px;
  font-weight: 600;
  color: #9ca3af;
  text-align: left;
  padding: 3px 4px;
  border-bottom: 1px solid #e5e7eb;
  white-space: nowrap;
}
.mockup-fact__table td {
  font-size: 7px;
  color: #4b5563;
  padding: 3px 4px;
  border-bottom: 1px solid #f7f7f8;
  white-space: nowrap;
}
.mockup-fact .fact-status {
  display: inline-block;
  padding: 1px 4px;
  border-radius: 3px;
  font-size: 6px;
  font-weight: 500;
}
.mockup-fact .fact-status--paid {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.mockup-fact .fact-status--sent {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.mockup-fact .fact-status--draft {
  background: rgba(156, 163, 175, 0.15);
  color: #6b7280;
}

.mockup-pdf-preview {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 24px;
  max-width: 400px;
  margin: 0 auto;
}

.mockup-pdf-page {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 24px 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  position: relative;
  min-height: 300px;
}
@media (max-width: 480px) {
  .mockup-pdf-page {
    min-height: 240px;
    padding: 16px 12px;
  }
}

.mockup-pdf-page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #ae0a68;
}
.mockup-pdf-page__header .pdf-logo {
  width: 40px;
  height: 12px;
  background: linear-gradient(135deg, #ae0a68 0%, #fc044a 100%);
  border-radius: 2px;
  opacity: 0.6;
}
.mockup-pdf-page__header .pdf-title {
  font-size: 9px;
  font-weight: 700;
  color: #1e3a5f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mockup-pdf-page__toc {
  margin-bottom: 16px;
}
.mockup-pdf-page__toc .toc-title {
  font-size: 8px;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 8px;
}
.mockup-pdf-page__toc .toc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 7px;
  color: #6b7280;
  padding: 3px 0;
  border-bottom: 1px dotted #e5e7eb;
}
.mockup-pdf-page__toc .toc-item .toc-dots {
  flex: 1;
  border-bottom: 1px dotted #d1d5db;
  margin: 0 8px;
}

.mockup-pdf-page__body .pdf-section-title {
  font-size: 8px;
  font-weight: 600;
  color: #ae0a68;
  margin-bottom: 4px;
}
.mockup-pdf-page__body .pdf-line {
  height: 4px;
  border-radius: 2px;
  background: #e5e7eb;
  margin-bottom: 4px;
  opacity: 0.5;
}
.mockup-pdf-page__body .pdf-line:nth-child(2) {
  width: 90%;
}
.mockup-pdf-page__body .pdf-line:nth-child(3) {
  width: 75%;
}
.mockup-pdf-page__body .pdf-line:nth-child(4) {
  width: 85%;
}
.mockup-pdf-page__body .pdf-line:nth-child(5) {
  width: 60%;
}

.mockup-pdf-page__footer {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 7px;
  color: #d1d5db;
}

.mockup-quote-form {
  padding: 16px;
}

.mockup-quote-form__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}
.mockup-quote-form__header .quote-title {
  font-size: 11px;
  font-weight: 600;
  color: #1e3a5f;
}
.mockup-quote-form__header .quote-number {
  font-size: 9px;
  color: #9ca3af;
}

.mockup-quote-form__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}
@media (max-width: 480px) {
  .mockup-quote-form__row {
    grid-template-columns: 1fr;
  }
}

.mockup-quote-form__cell {
  padding: 8px;
  background: #f7f7f8;
  border-radius: 6px;
  font-size: 9px;
  color: #6b7280;
}
.mockup-quote-form__cell--header {
  background: none;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  font-size: 8px;
  padding-bottom: 4px;
}
.mockup-quote-form__cell--total {
  background: rgba(30, 58, 95, 0.04);
  color: #1e3a5f;
  font-weight: 700;
  font-size: 10px;
}

.mockup-quote-form__footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mockup-quote-form__footer .quote-total {
  font-size: 11px;
  font-weight: 700;
  color: #1e3a5f;
}
.mockup-quote-form__footer .quote-convert {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  background: linear-gradient(135deg, #ae0a68 0%, #fc044a 100%);
  color: #ffffff;
  border-radius: 6px;
  font-size: 8px;
  font-weight: 600;
}
.mockup-quote-form__footer .quote-convert svg {
  width: 10px;
  height: 10px;
}

.mockup-accounting {
  padding: 16px;
}

.mockup-accounting__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
@media (max-width: 480px) {
  .mockup-accounting__stats {
    grid-template-columns: 1fr;
  }
}

.mockup-accounting__stat-card {
  background: #f7f7f8;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}
.mockup-accounting__stat-card--positive {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
}
.mockup-accounting__stat-card--negative {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.1);
}
.mockup-accounting__stat-card--result {
  background: rgba(30, 58, 95, 0.04);
  border: 1px solid rgba(30, 58, 95, 0.1);
}

.mockup-accounting__stat-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}
.mockup-accounting__stat-value--positive {
  color: #10b981;
}
.mockup-accounting__stat-value--negative {
  color: #ef4444;
}
.mockup-accounting__stat-value--result {
  color: #1e3a5f;
}

.mockup-accounting__stat-label {
  font-size: 9px;
  color: #6b7280;
}

.mockup-accounting__export {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: rgba(174, 10, 104, 0.06);
  border: 1px dashed rgba(174, 10, 104, 0.25);
  border-radius: 8px;
  color: #ae0a68;
  font-size: 10px;
  font-weight: 600;
}
.mockup-accounting__export svg {
  width: 16px;
  height: 16px;
}

.mockup-hint-demo {
  padding: 24px;
}

.mockup-hint-demo__field {
  margin-bottom: 12px;
}
.mockup-hint-demo__field .field-label {
  font-size: 9px;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 4px;
  display: block;
}
.mockup-hint-demo__field .field-input {
  width: 100%;
  height: 32px;
  background: #f7f7f8;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
}

.mockup-hint-demo__bubble {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: rgba(99, 102, 241, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 8px;
  margin-top: 8px;
}
.mockup-hint-demo__bubble .bubble-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mockup-hint-demo__bubble .bubble-icon svg {
  width: 14px;
  height: 14px;
  color: #6366f1;
}
.mockup-hint-demo__bubble .bubble-content .bubble-title {
  font-size: 9px;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 2px;
}
.mockup-hint-demo__bubble .bubble-content .bubble-text {
  font-size: 8px;
  color: #6b7280;
  line-height: 1.5;
}

.mockup-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
  padding-top: 12px;
}
@media (max-width: 480px) {
  .mockup-chart {
    height: 40px;
  }
}

.mockup-chart__bar {
  flex: 1;
  background: rgba(174, 10, 104, 0.15);
  border-radius: 2px 2px 0 0;
  min-height: 4px;
  position: relative;
  transition: background 0.2s ease;
}
.mockup-chart__bar--active {
  background: linear-gradient(135deg, #ae0a68 0%, #fc044a 100%);
}
.mockup-chart__bar .bar-label {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 7px;
  color: #9ca3af;
  white-space: nowrap;
}

.module__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  color: #ae0a68;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.module__cta-link:hover {
  gap: 10px;
}
.module__cta-link svg {
  width: 16px;
  height: 16px;
}

.mockup-financier {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}
.mockup-financier__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid #e5e7eb;
  background: #f7f7f8;
}
.mockup-financier__title {
  font-size: 10px;
  font-weight: 600;
  color: #1e3a5f;
}
.mockup-financier__tabs {
  display: flex;
  gap: 2px;
}
.mockup-financier__tab {
  padding: 3px 8px;
  font-size: 7px;
  color: #9ca3af;
  border-radius: 3px;
  background: transparent;
}
.mockup-financier__tab--active {
  background: #ae0a68;
  color: #fff;
  font-weight: 600;
}
.mockup-financier__kpis {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid #f7f7f8;
}
.mockup-financier__kpi {
  flex: 1;
  text-align: center;
  padding: 8px 6px;
  background: #f7f7f8;
  border-radius: 6px;
}
.mockup-financier__kpi-value {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #1e3a5f;
}
.mockup-financier__kpi-label {
  display: block;
  font-size: 6px;
  color: #6b7280;
  margin-top: 2px;
}
.mockup-financier__kpi--positive .mockup-financier__kpi-value {
  color: #10b981;
}
.mockup-financier__kpi--negative .mockup-financier__kpi-value {
  color: #ef4444;
}
.mockup-financier__year-tabs {
  display: inline-flex;
  margin: 8px 14px 0;
}
.mockup-financier__year-tab {
  padding: 2px 8px;
  font-size: 6px;
  color: #9ca3af;
  border: 1px solid #e5e7eb;
  background: #f7f7f8;
}
.mockup-financier__year-tab:first-child {
  border-radius: 3px 0 0 3px;
}
.mockup-financier__year-tab:last-child {
  border-radius: 0 3px 3px 0;
}
.mockup-financier__year-tab:not(:first-child) {
  border-left: none;
}
.mockup-financier__year-tab--active {
  background: #ae0a68;
  color: #fff;
  border-color: #ae0a68;
}
.mockup-financier__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 6px;
}
.mockup-financier__table th {
  font-size: 6px;
  font-weight: 600;
  color: #9ca3af;
  text-align: right;
  padding: 3px 5px;
  border-bottom: 1px solid #e5e7eb;
}
.mockup-financier__table th:first-child {
  text-align: left;
  padding-left: 14px;
}
.mockup-financier__table td {
  font-size: 7px;
  color: #4b5563;
  text-align: right;
  padding: 3px 5px;
  border-bottom: 1px solid #f7f7f8;
  white-space: nowrap;
}
.mockup-financier__table td:first-child {
  text-align: left;
  padding-left: 14px;
}
.mockup-financier__table .row-section td {
  font-weight: 600;
  color: #1e3a5f;
  background: rgba(247, 247, 248, 0.5);
}
.mockup-financier__table .row-sub td {
  color: #9ca3af;
  font-size: 6px;
}
.mockup-financier__table .row-sub td:first-child {
  padding-left: 22px;
}
.mockup-financier__table .row-total td {
  font-weight: 700;
  color: #1e3a5f;
  border-top: 2px solid #e5e7eb;
}
.mockup-financier__table .positive {
  color: #10b981;
}
.mockup-financier__table .negative {
  color: #ef4444;
}

.mockup-excel {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}
.mockup-excel__toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: #217346;
  color: #fff;
}
.mockup-excel__toolbar-icon {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}
.mockup-excel__toolbar-title {
  font-size: 8px;
  font-weight: 600;
}
.mockup-excel__formula-bar {
  display: flex;
  align-items: center;
  padding: 3px 10px;
  border-bottom: 1px solid #e5e7eb;
  background: #f7f7f8;
}
.mockup-excel__formula-bar-cell {
  font-size: 7px;
  font-weight: 600;
  color: #1e3a5f;
  padding: 2px 6px;
  border: 1px solid #d1d5db;
  border-radius: 2px;
  background: #fff;
  margin-right: 6px;
}
.mockup-excel__formula-bar-fx {
  font-size: 7px;
  color: #9ca3af;
  font-style: italic;
}
.mockup-excel__grid {
  display: grid;
  grid-template-columns: 80px repeat(6, 1fr);
  font-size: 7px;
}
@media (max-width: 480px) {
  .mockup-excel__grid {
    grid-template-columns: 60px repeat(6, 1fr);
    font-size: 6px;
  }
}
.mockup-excel__cell {
  padding: 3px 5px;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  white-space: nowrap;
  overflow: hidden;
  color: #4b5563;
}
.mockup-excel__cell--header {
  background: #f7f7f8;
  font-weight: 600;
  color: #6b7280;
  text-align: center;
}
.mockup-excel__cell--row-header {
  background: #f7f7f8;
  font-weight: 500;
  color: #1e3a5f;
}
.mockup-excel__cell--bold {
  font-weight: 600;
  color: #1e3a5f;
}
.mockup-excel__cell--positive {
  color: #10b981;
}
.mockup-excel__cell--negative {
  color: #ef4444;
}
.mockup-excel__cell--selected {
  outline: 2px solid #217346;
  outline-offset: -1px;
  background: rgba(33, 115, 70, 0.05);
}
.mockup-excel__sheet-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid #e5e7eb;
  background: #f7f7f8;
  padding: 0 4px;
}
.mockup-excel__sheet-tab {
  padding: 4px 10px;
  font-size: 7px;
  color: #6b7280;
  border-right: 1px solid #e5e7eb;
  background: #f7f7f8;
}
.mockup-excel__sheet-tab--active {
  background: #fff;
  color: #217346;
  font-weight: 600;
  border-bottom: 2px solid #217346;
}

.mockup-projets {
  background: #f7f7f8;
  border-radius: 16px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #e5e7eb;
  padding: 14px;
}
.mockup-projets__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.mockup-projets__title {
  font-size: 11px;
  font-weight: 700;
  color: #1e3a5f;
}
.mockup-projets__title span {
  display: inline-block;
  background: rgba(174, 10, 104, 0.1);
  color: #ae0a68;
  font-size: 8px;
  padding: 1px 5px;
  border-radius: 8px;
  margin-left: 4px;
  font-weight: 600;
}
.mockup-projets__add-btn {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px 10px;
  background: linear-gradient(135deg, #ae0a68 0%, #fc044a 100%);
  color: #fff;
  border-radius: 999px;
  font-size: 7px;
  font-weight: 600;
}
.mockup-projets__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 480px) {
  .mockup-projets__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.mockup-projets__card {
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mockup-projets__card-name {
  font-size: 9px;
  font-weight: 600;
  color: #1e3a5f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mockup-projets__card-status {
  display: inline-block;
  padding: 1px 5px;
  border-radius: 8px;
  font-size: 6px;
  font-weight: 500;
  align-self: flex-start;
}
.mockup-projets__card-status--encours {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}
.mockup-projets__card-status--termine {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.mockup-projets__card-status--brouillon {
  background: rgba(156, 163, 175, 0.15);
  color: #6b7280;
}
.mockup-projets__card-meta {
  font-size: 6px;
  color: #9ca3af;
  display: flex;
  gap: 6px;
}
.mockup-projets__card-progress {
  height: 3px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
}
.mockup-projets__card-progress span {
  display: block;
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(135deg, #ae0a68 0%, #fc044a 100%);
}
.mockup-projets__card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 6px;
  color: #9ca3af;
}
.mockup-projets__card--add {
  background: rgba(174, 10, 104, 0.03);
  border: 2px dashed rgba(174, 10, 104, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}
.mockup-projets__card--add span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #ae0a68;
  font-size: 7px;
  font-weight: 500;
}
.mockup-projets__card--add .plus-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(174, 10, 104, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.mockup-invoice {
  background: #f8f8f8;
  border-radius: 16px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #e5e7eb;
  padding: 12px;
}
.mockup-invoice__actions {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}
.mockup-invoice__action-btn {
  padding: 3px 8px;
  font-size: 6px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #4b5563;
}
.mockup-invoice__action-btn--primary {
  background: linear-gradient(135deg, #ae0a68 0%, #fc044a 100%);
  color: #fff;
  border: none;
}
.mockup-invoice__action-btn--success {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.2);
}
.mockup-invoice__paper {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 14px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.mockup-invoice__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f7f7f8;
}
.mockup-invoice__sender, .mockup-invoice__client {
  font-size: 6px;
  color: #6b7280;
  line-height: 1.5;
}
.mockup-invoice__sender-name, .mockup-invoice__client-name {
  font-size: 8px;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 2px;
}
.mockup-invoice__client {
  text-align: right;
}
.mockup-invoice__meta {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f7f7f8;
}
.mockup-invoice__meta-item {
  font-size: 6px;
  color: #9ca3af;
}
.mockup-invoice__meta-item span {
  display: block;
  font-size: 7px;
  color: #1e3a5f;
  font-weight: 500;
  margin-top: 1px;
}
.mockup-invoice__meta-status {
  display: inline-block;
  padding: 1px 5px;
  border-radius: 8px;
  font-size: 6px;
  font-weight: 500;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.mockup-invoice__lines {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}
.mockup-invoice__lines th {
  font-size: 6px;
  font-weight: 600;
  color: #9ca3af;
  text-align: left;
  padding: 4px 5px;
  border-bottom: 1px solid #e5e7eb;
}
.mockup-invoice__lines th:nth-child(n+2) {
  text-align: right;
}
.mockup-invoice__lines td {
  font-size: 7px;
  color: #4b5563;
  padding: 4px 5px;
  border-bottom: 1px solid #f7f7f8;
}
.mockup-invoice__lines td:nth-child(n+2) {
  text-align: right;
}
.mockup-invoice__totals {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  padding-top: 6px;
  border-top: 1px solid #e5e7eb;
}
.mockup-invoice__total-row {
  display: flex;
  gap: 20px;
  font-size: 7px;
  color: #6b7280;
}
.mockup-invoice__total-row span:last-child {
  font-weight: 500;
  color: #374151;
  min-width: 60px;
  text-align: right;
}
.mockup-invoice__total-row--ttc {
  font-weight: 700;
  color: #1e3a5f;
  font-size: 9px;
  margin-top: 2px;
  padding-top: 4px;
  border-top: 2px solid #1e3a5f;
}
.mockup-invoice__total-row--ttc span:last-child {
  color: #1e3a5f;
  font-weight: 700;
}

.mockup-clients {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}
.mockup-clients__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid #e5e7eb;
}
.mockup-clients__title {
  font-size: 11px;
  font-weight: 700;
  color: #1e3a5f;
}
.mockup-clients__title span {
  color: #9ca3af;
  font-weight: 400;
}
.mockup-clients__add-btn {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px 10px;
  background: #064e3b;
  color: #fff;
  border-radius: 999px;
  font-size: 7px;
  font-weight: 600;
}
.mockup-clients__filters {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-bottom: 1px solid #f7f7f8;
}
.mockup-clients__search {
  flex: 1;
  padding: 4px 8px;
  font-size: 7px;
  color: #9ca3af;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  background: #f7f7f8;
}
.mockup-clients__filter-btn {
  padding: 3px 8px;
  font-size: 7px;
  color: #6b7280;
  border-radius: 4px;
  background: transparent;
}
.mockup-clients__filter-btn--active {
  background: rgba(6, 78, 59, 0.1);
  color: #064e3b;
  font-weight: 600;
}
.mockup-clients__table {
  width: 100%;
  border-collapse: collapse;
}
.mockup-clients__table th {
  font-size: 6px;
  font-weight: 600;
  color: #9ca3af;
  text-align: left;
  padding: 5px 8px;
  border-bottom: 1px solid #e5e7eb;
}
.mockup-clients__table th:first-child {
  padding-left: 14px;
}
.mockup-clients__table td {
  font-size: 7px;
  color: #4b5563;
  padding: 6px 8px;
  border-bottom: 1px solid #f7f7f8;
  white-space: nowrap;
}
.mockup-clients__table td:first-child {
  padding-left: 14px;
}
.mockup-clients__client-name {
  font-weight: 600;
  color: #1e3a5f;
}
.mockup-clients__client-code {
  font-size: 6px;
  color: #9ca3af;
  font-family: monospace;
}
.mockup-clients__badge {
  display: inline-block;
  padding: 1px 4px;
  border-radius: 3px;
  font-size: 5px;
  font-weight: 500;
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
  margin-left: 3px;
}
.mockup-clients__actions {
  display: flex;
  gap: 4px;
}
.mockup-clients__action-icon {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f8;
}
.mockup-clients__action-icon svg {
  width: 8px;
  height: 8px;
  stroke: #9ca3af;
}
.mockup-clients__action-icon--danger {
  background: rgba(239, 68, 68, 0.05);
}
.mockup-clients__action-icon--danger svg {
  stroke: #ef4444;
}

.mockup-efacture {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #e5e7eb;
  padding: 14px;
}
.mockup-efacture__title {
  font-size: 10px;
  font-weight: 700;
  color: #1e3a5f;
  text-align: center;
  margin-bottom: 12px;
}
.mockup-efacture__title svg {
  width: 12px;
  height: 12px;
  vertical-align: middle;
  margin-right: 3px;
}
.mockup-efacture__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 14px;
}
@media (max-width: 480px) {
  .mockup-efacture__flow {
    gap: 4px;
  }
}
.mockup-efacture__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #f7f7f8;
  border: 1px solid #e5e7eb;
  min-width: 70px;
}
@media (max-width: 480px) {
  .mockup-efacture__node {
    min-width: 55px;
    padding: 6px 6px;
  }
}
.mockup-efacture__node-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-efacture__node-icon svg {
  width: 12px;
  height: 12px;
}
.mockup-efacture__node-icon--sender {
  background: rgba(174, 10, 104, 0.1);
  color: #ae0a68;
}
.mockup-efacture__node-icon--pdp {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.mockup-efacture__node-icon--receiver {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.mockup-efacture__node-label {
  font-size: 7px;
  font-weight: 600;
  color: #1e3a5f;
  text-align: center;
}
.mockup-efacture__node-sub {
  font-size: 6px;
  color: #9ca3af;
}
.mockup-efacture__arrow {
  font-size: 10px;
  color: #d1d5db;
  flex-shrink: 0;
}
.mockup-efacture__timeline {
  border-top: 1px solid #f7f7f8;
  padding-top: 10px;
}
.mockup-efacture__timeline-title {
  font-size: 8px;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 8px;
}
.mockup-efacture__step {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 0;
  position: relative;
}
.mockup-efacture__step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 18px;
  bottom: -4px;
  width: 1px;
  background: #e5e7eb;
}
.mockup-efacture__step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
}
.mockup-efacture__step-dot--done {
  background: #10b981;
  color: #fff;
}
.mockup-efacture__step-dot--active {
  background: #3b82f6;
  color: #fff;
}
.mockup-efacture__step-dot--pending {
  background: #e5e7eb;
}
.mockup-efacture__step-content {
  flex: 1;
}
.mockup-efacture__step-label {
  font-size: 7px;
  font-weight: 500;
  color: #1e3a5f;
}
.mockup-efacture__step-time {
  font-size: 6px;
  color: #9ca3af;
}
.mockup-efacture__formats {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid #f7f7f8;
  justify-content: center;
}
.mockup-efacture__format {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 7px;
  font-weight: 500;
  background: #f7f7f8;
  color: #6b7280;
  border: 1px solid #e5e7eb;
}
.mockup-efacture__format--active {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.2);
}

.pricing {
  background: url("../img/background_home.png") top center no-repeat #f0efeb;
  background-size: cover;
}

.pricing__toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 64px;
  gap: 0;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;
}
@media (max-width: 768px) {
  .pricing__toggle {
    margin-bottom: 48px;
  }
}

.pricing__toggle-btn {
  padding: 12px 32px;
  border: 2px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  min-width: 120px;
  position: relative;
}
@media (max-width: 480px) {
  .pricing__toggle-btn {
    min-width: 100px;
    padding: 8px 16px;
    font-size: 13px;
  }
}
.pricing__toggle-btn:hover {
  color: #ae0a68;
}
.pricing__toggle-btn.is-active {
  background: #ffffff;
  border-color: #ae0a68;
  color: #ae0a68;
}

.pricing__toggle-badge {
  display: inline-block;
  background: #10b981;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}
@media (max-width: 1024px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
    gap: 24px;
  }
}

.pricing__card {
  background: #ffffff;
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  position: relative;
}
@media (max-width: 480px) {
  .pricing__card {
    padding: 32px 24px;
  }
}
.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
}
.pricing__card--featured {
  border-color: #ae0a68;
}
.pricing__card--featured .pricing__btn {
  background: linear-gradient(135deg, #ae0a68 0%, #fc044a 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(174, 10, 104, 0.3);
}
.pricing__card--featured .pricing__btn:hover {
  box-shadow: 0 12px 30px rgba(174, 10, 104, 0.4);
}

.pricing__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ae0a68 0%, #fc044a 100%);
  color: #ffffff;
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing__card-header {
  text-align: center;
  margin-bottom: 32px;
}
.pricing__card-header h3 {
  font-size: 20px;
  color: #1e3a5f;
  margin-bottom: 12px;
  font-weight: 700;
}
.pricing__card-header h3 span {
  display: block;
  color: #ae0a68;
}
.pricing__card-header .pricing__description {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
  min-height: 42px;
}
@media (max-width: 480px) {
  .pricing__card-header .pricing__description {
    min-height: auto;
  }
}

.pricing__price-block {
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 480px) {
  .pricing__price-block {
    margin-bottom: 16px;
  }
}

.pricing__price {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #1e3a5f;
  line-height: 1;
  margin-bottom: 8px;
  transition: opacity 0.15s ease;
}
@media (max-width: 768px) {
  .pricing__price {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .pricing__price {
    font-size: 36px;
  }
}

.pricing__period {
  display: block;
  color: #4b5563;
  font-size: 14px;
  transition: opacity 0.15s ease;
}

.pricing__mention {
  display: block;
  color: #9ca3af;
  font-size: 12px;
  margin-top: 4px;
}

.pricing__btn {
  display: block;
  width: 100%;
  padding: 14px 32px;
  background: #1e3a5f;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 32px;
}
@media (max-width: 480px) {
  .pricing__btn {
    margin-bottom: 16px;
  }
}
.pricing__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: #ffffff;
}

.pricing__features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.4;
}
.pricing__features li.included {
  color: #1a1a2e;
}
.pricing__features li.excluded {
  color: #9ca3af;
}

.pricing__icon-check,
.pricing__icon-cross {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing__icon-check {
  color: #10b981;
}

.pricing__icon-cross {
  color: #ef4444;
}

.faq {
  background: #ffffff;
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid #e5e7eb;
}
.faq__item:first-child {
  border-top: 1px solid #e5e7eb;
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1e3a5f;
  text-align: left;
  transition: color 0.2s ease;
}
@media (max-width: 480px) {
  .faq__question {
    font-size: 15px;
    padding: 16px 0;
  }
}
.faq__question:hover {
  color: #ae0a68;
}
.faq__question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #9ca3af;
  transition: transform 0.3s ease;
  margin-left: 16px;
}
.faq__question.is-open svg {
  transform: rotate(180deg);
  color: #ae0a68;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease ease, padding 0.3s ease ease;
}
.faq__answer.is-open {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq__answer p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.8;
  padding-right: 48px;
}
@media (max-width: 480px) {
  .faq__answer p {
    padding-right: 0;
  }
}

.contact-hero {
  padding: 160px 0 48px;
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 30%, #f0efeb 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .contact-hero {
    padding: 120px 0 32px;
  }
}
@media (max-width: 480px) {
  .contact-hero {
    padding: 100px 0 24px;
  }
}
.contact-hero::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ae0a68 0%, #fc044a 100%);
  top: -150px;
  right: -100px;
  opacity: 0.1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .contact-hero::before {
    width: 200px;
    height: 200px;
    top: -80px;
  }
}

.contact-hero__title {
  font-size: 32px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .contact-hero__title {
    font-size: 24px;
  }
}

.contact-hero__subtitle {
  font-size: 18px;
  color: #4b5563;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .contact-hero__subtitle {
    font-size: 15px;
  }
}

.contact-section {
  padding: 64px 0 80px;
  background: #ffffff;
}
@media (max-width: 768px) {
  .contact-section {
    padding: 48px 0 64px;
  }
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .contact-form {
    padding: 32px;
  }
}
@media (max-width: 480px) {
  .contact-form {
    padding: 24px;
    border-radius: 12px;
  }
}

.contact-form__group {
  margin-bottom: 24px;
}
.contact-form__group:last-of-type {
  margin-bottom: 32px;
}

.contact-form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 8px;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  color: #1a1a2e;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
.contact-form__input::placeholder,
.contact-form__select::placeholder,
.contact-form__textarea::placeholder {
  color: #9ca3af;
}
.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: #ae0a68;
  box-shadow: 0 0 0 3px rgba(174, 10, 104, 0.1);
}

.contact-form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.contact-form__submit {
  width: 100%;
  padding: 14px 32px;
  background: linear-gradient(135deg, #ae0a68 0%, #fc044a 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 8px 25px rgba(174, 10, 104, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.contact-form__submit svg {
  width: 18px;
  height: 18px;
}
.contact-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(174, 10, 104, 0.4);
}
.contact-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.contact-form__feedback {
  display: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 24px;
}
.contact-form__feedback.is-visible {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-form__feedback svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.contact-form__feedback--success {
  background: rgba(16, 185, 129, 0.08);
  color: rgb(11.9402985075, 138.0597014925, 96.2686567164);
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.contact-form__feedback--error {
  background: rgba(239, 68, 68, 0.06);
  color: rgb(234.9802955665, 21.0197044335, 21.0197044335);
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.contact-info {
  max-width: 600px;
  margin: 48px auto 0;
  text-align: center;
}

.contact-info__text {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
}
.contact-info__text a {
  color: #ae0a68;
  font-weight: 500;
}

.cta-final {
  background: linear-gradient(135deg, #ae0a68 0%, #fc044a 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cta-final {
    padding: 64px 0;
  }
}
.cta-final::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  top: -200px;
  right: -100px;
}
.cta-final::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  bottom: -150px;
  left: -50px;
}

.cta-final__content {
  position: relative;
  z-index: 1;
}

.cta-final__content h2 {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .cta-final__content h2 {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .cta-final__content h2 {
    font-size: 20px;
  }
}

.cta-final__content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .cta-final__content p {
    font-size: 15px;
    margin-bottom: 32px;
  }
}

.site-footer {
  background: #1e3a5f;
  padding: 64px 0 32px;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }
}

.site-footer__brand {
  max-width: 280px;
}
@media (max-width: 768px) {
  .site-footer__brand {
    max-width: 100%;
  }
}

.site-footer__logo {
  display: inline-block;
  margin-bottom: 16px;
}
.site-footer__logo svg {
  width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-footer__tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__links {
  display: flex;
  gap: 48px;
}
@media (max-width: 768px) {
  .site-footer__links {
    gap: 32px;
  }
}
@media (max-width: 480px) {
  .site-footer__links {
    flex-direction: column;
    gap: 24px;
  }
}

.site-footer__col h4 {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.site-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer__col a:hover {
  color: #ffffff;
}

.site-footer__bottom {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

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