:root {
  --primary-color: #1B0330;
  --accent-color: #8B3EE6;
  --accent-light: #A562FF;
  --text-dark: #1F1926;
  --text-muted: #5C5266;
  --light-bg: #F8F6FA;
  --light-neutral: #FAF8FC;
  --white: #FFFFFF;
  --error-color: #D32F2F;
  --success-color: #388E3C;
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Cabinet Grotesk', sans-serif;
  --container-width: 1200px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-color);
}

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

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

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

.section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 60px;
  max-width: 700px;
}

.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.section-tagline {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 300;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.header.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(27, 3, 48, 0.05);
}

.footer-top-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-svg {
  height: 40px;
  width: auto;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.03em;
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 8px 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.contact-meta {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-color);
}

.btn-cta-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-cta-header:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.burger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: var(--transition);
}

.hero-section {
  padding-top: 150px;
  padding-bottom: 80px;
  background: radial-gradient(circle at 80% 20%, #FAF6FE 0%, #FFFFFF 100%);
}

.outer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, #1B0330 0%, #350F56 100%);
  border-radius: 32px;
  padding: 60px;
  color: var(--white);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.badge-top {
  display: inline-block;
  background: rgba(139, 62, 230, 0.15);
  border: 1px solid rgba(139, 62, 230, 0.3);
  color: var(--accent-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.hero-title {
  color: var(--white);
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.accent-color {
  color: var(--accent-light);
  position: relative;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

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

.btn-primary {
  background-color: var(--accent-color);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
}

.btn-primary:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 62, 230, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
}

.hero-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  aspect-ratio: 4/3;
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits-section {
  background-color: var(--white);
}

.benefit-card {
  background-color: var(--light-neutral);
  border: 1px solid rgba(27, 3, 48, 0.04);
  border-radius: 20px;
  padding: 40px;
  transition: var(--transition);
}

.benefit-card:hover {
  background-color: var(--white);
  box-shadow: 0 20px 40px rgba(27, 3, 48, 0.04);
  border-color: rgba(139, 62, 230, 0.1);
  transform: translateY(-5px);
}

.benefit-icon-wrapper {
  width: 50px;
  height: 50px;
  background-color: rgba(139, 62, 230, 0.1);
  color: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 24px;
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bg-dark-gradient {
  background: linear-gradient(135deg, #120121 0%, #1B0330 100%);
}

.about-content .section-title.text-light {
  color: var(--white);
}

.text-light-muted {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin-bottom: 20px;
  font-weight: 300;
}

.cta-block-inline {
  margin-top: 32px;
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  display: inline-block;
}

.btn-accent:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
}

.about-image-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  aspect-ratio: 4/5;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.numbers-section {
  background-color: #170428;
  color: var(--white);
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.numbers-section .section-title {
  color: var(--white);
  font-size: 2.2rem;
}

.number-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 40px;
}

.num-value {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 12px;
}

.num-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.services-section {
  background-color: var(--white);
}

.service-card {
  background-color: var(--light-neutral);
  border-left: 4px solid var(--accent-color);
  border-radius: 0 20px 20px 0;
  padding: 48px;
  transition: var(--transition);
}

.service-card:hover {
  background-color: var(--white);
  box-shadow: 0 20px 45px rgba(27, 3, 48, 0.04);
  transform: translateY(-4px);
}

.card-title-lg {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.text-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
}

.text-link:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

.bg-light-neutral {
  background-color: var(--light-neutral);
}

.testimonials-section {
  padding: 100px 0;
}

.testimonial-wrapper {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 60px;
  align-items: center;
  background-color: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 15px 40px rgba(27, 3, 48, 0.03);
  border: 1px solid rgba(27, 3, 48, 0.02);
}

.testimonial-image-col {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.testimonial-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-quote {
  font-size: 1.6rem;
  font-style: italic;
  color: var(--primary-color);
  line-height: 1.5;
  margin-bottom: 32px;
  font-weight: 300;
}

.testimonial-author {
  display: block;
  font-style: normal;
}

.testimonial-author strong {
  display: block;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.testimonial-author span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.faq-section {
  background-color: var(--white);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(27, 3, 48, 0.08);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-trigger:hover {
  color: var(--accent-color);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-left: 20px;
  transition: var(--transition);
}

.faq-item.active .faq-trigger {
  color: var(--accent-color);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-content p {
  padding-bottom: 24px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.faq-item.active .faq-content {
  max-height: 500px;
}

.contact-section {
  background-color: var(--light-neutral);
  border-top: 1px solid rgba(27, 3, 48, 0.03);
}

.contact-info {
  padding-right: 20px;
}

.contact-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-detail-item strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-detail-item p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.contact-link:hover {
  color: var(--accent-color);
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(27, 3, 48, 0.06);
}

.contact-form-wrapper {
  background-color: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 50px rgba(27, 3, 48, 0.04);
  border: 1px solid rgba(27, 3, 48, 0.02);
}

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

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background-color: var(--light-neutral);
  border: 1px solid rgba(27, 3, 48, 0.08);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background-color: var(--white);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(139, 62, 230, 0.1);
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--accent-color);
}

.form-checkbox-group label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.form-checkbox-group label a {
  color: var(--accent-color);
  text-decoration: underline;
}

.btn-submit {
  background-color: var(--accent-color);
  color: var(--white);
  border: none;
  padding: 18px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.03em;
}

.btn-submit:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(27, 3, 48, 0.1);
}

.form-error-msg {
  display: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--error-color);
  background-color: rgba(211, 47, 47, 0.05);
  border: 1px solid rgba(211, 47, 47, 0.15);
  padding: 10px 14px;
  border-radius: 6px;
  text-align: center;
}

.footer {
  background-color: #120121;
  color: var(--white);
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-middle {
  display: grid;
  grid-template-columns: 1.25fr 0.850fr 0.90fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-col .logo {
  margin-bottom: 20px;
}

.footer-brand-col .logo-text {
  color: var(--white);
}

.footer-about-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.footer-col-title {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  color: var(--white);
  z-index: 10000;
  padding: 30px 0;
  box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.4);
  border-top: 3px solid var(--accent-color);
  display: none;
}

.cookie-banner-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-title {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
}

.cookie-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.cookie-customization-box {
  display: none;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-top: 10px;
}

.cookie-custom-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.cookie-custom-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent-color);
}

.cookie-custom-option label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-banner-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-cookie-outline {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-outline:hover {
  border-color: var(--white);
  background-color: rgba(255, 255, 255, 0.05);
}

.btn-cookie-reject {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.btn-cookie-accept {
  background-color: var(--accent-color);
  border: none;
  color: var(--white);
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-accept:hover {
  background-color: var(--accent-light);
}

.legal-main {
  padding-top: 140px;
  padding-bottom: 100px;
  max-width: 800px;
}

.legal-title {
  font-size: 3.2rem;
  margin-bottom: 8px;
}

.legal-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.legal-section p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-section ul {
  margin-left: 24px;
  margin-bottom: 24px;
  color: var(--text-muted);
}

.legal-section li {
  margin-bottom: 10px;
}

.table-container {
  width: 100%;
  overflow-x: auto;
  margin: 24px 0;
  border-radius: 8px;
  border: 1px solid rgba(27, 3, 48, 0.08);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

th, td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(27, 3, 48, 0.08);
}

th {
  background-color: var(--light-neutral);
  color: var(--primary-color);
  font-weight: 700;
}

td {
  color: var(--text-muted);
}

.text-success {
  color: var(--success-color);
  font-weight: 600;
}

.text-error {
  color: var(--error-color);
  font-weight: 600;
}

.static-header {
  position: relative;
  background-color: var(--white);
  border-bottom: 1px solid rgba(27, 3, 48, 0.06);
}

.thank-you-main {
  padding: 120px 0;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.success-badge {
  width: 80px;
  height: 80px;
  background-color: rgba(56, 142, 60, 0.1);
  color: var(--success-color);
  font-size: 2.5rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
}

.thank-you-title {
  font-size: 3rem;
  margin-bottom: 20px;
}

.thank-you-text {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 16px auto;
}

.thank-you-detail {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.btn-group-center {
  display: flex;
  justify-content: center;
}

@media (max-width: 1024px) {
  .grid-2, .grid-3 {
    gap: 30px;
  }
  .section-title {
    font-size: 2.3rem;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .testimonial-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .testimonial-image-col {
    max-width: 160px;
  }
}

@media (max-width: 768px) {
  .cookie-banner-inner {
    gap: 16px;
  }
  .cookie-banner-actions {
    justify-content: flex-start;
  }
  .header-meta .contact-meta {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    gap: 24px;
    transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }
  .nav-menu.open {
    left: 0;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  .hero-image-wrapper {
    order: -1;
    aspect-ratio: 16/10;
  }
  .about-image-wrapper {
    aspect-ratio: 16/10;
  }
  .footer-middle {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form-wrapper {
    padding: 30px 20px;
  }
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger-btn.active span:nth-child(2) {
  opacity: 0;
}
.burger-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}