body {
  width: 100%;
  margin: 0 auto;
  left: auto;
  right: auto;
  background-color: var(--color-dark-blue);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: fit-content;
}

.container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-grey);
  z-index: 5;
  width: calc(100% - 2 * var(--section-horizontal-paddding));
  max-width: 1920px;
}

.section-container {
  position: relative;
  z-index: 5;
}

.name {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  justify-content: flex-end;
  align-items: center;
}

.header-group {
  margin-bottom: 6vh;
  min-height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 960px;
}

.header-group .subtitle {
  font: var(--font-text);
  margin-bottom: 6px;
}

.header-group h1 {
  font: var(--font-h1);
  text-align: center;
}

.header-group h1 .star {
  position: relative;
  top: -20px;
  left: -10px;
}

.header-group .squiggles {
  position: relative;
  top: 24px;
  right: -124px;
}

.description-group {
  height: 26vh;
  min-height: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.description-group .description {
  width: 470px;
  font: var(--font-text);
}

.name .create-space {
  margin-right: 100px;
}

.section-header .subtitle {
  font: var(--font-text);
}

.section-header .title {
  font: var(--font-h2);
}

@media screen and (max-width: 1024px) {
  .header-group {
    width: 100%;
    margin-bottom: unset;
    height: unset;
  }
  .header-group .squiggles {
    right: -200px;
  }
  .description-group {
    flex-direction: column-reverse;
    justify-content: unset;
    align-items: flex-start;
    height: unset;
  }
  .description-group .btn-with-circle {
    margin-left: 60px;
    margin-bottom: 90px;
  }
  .description-group .description {
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 640px) {
  .section-header .subtitle {
    font-size: 14px;
  }
  .section-header .title {
    font-size: 30px;
  }

  .name {
    height: unset;
  }
  .header-group {
    height: 70vh;
    height: calc(var(--vh, 1vh) * 70);
    justify-content: flex-end;
    padding-bottom: 60px;
  }
  .header-group .subtitle {
    font-size: 14px;
  }
  .header-group h1 {
    font-size: 36px;
  }
  .header-group h1 .star {
    width: 10px;
    height: 10px;
    left: -5px;
  }
  .header-group .squiggles {
    width: 150px;
    right: -80px;
  }
  .description-group .btn-with-circle {
    height: 30vh;
    height: calc(var(--vh, 1vh) * 30);
    margin-left: 0px;
    margin-bottom: 90px;
  }
}


.about {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: var(--section-horizontal-paddding) 0 100px 0;
}

.about .section-header {
  width: 520px;
}

.about .section-header img {
  margin-top: 50px;
  margin-left: 300px;
}

.about-cards {
  width: 630px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  top: 0;
  transition: top 0.2s ease-in-out;
}

.about-card {
  border-radius: 30px;
  border: 1px solid var(--color-violet);
  background: var(--color-blue);
  padding: 40px 30px;
}

.about-card img {
  width: 25px;
  height: 26px;
  margin-bottom: 15px;
}

.about-card p {
  font: var(--font-text);
}

@media screen and (max-width: 1024px) {
  .about {
    padding: 0px;
    padding-top: 120px;
    flex-direction: column;
  }
  .about .section-header {
    align-self: center;
    width: 100%;
    max-width: 700px;
    position: relative;
    text-align: center;
    margin-bottom: 70px;
  }
  .about .section-header img {
    margin: 0;
    transform: scaleX(-1);
    position: absolute;
    top: 20px;
    right: -5px;
  }
  .about-cards {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .about .section-header {
    margin-bottom: 50px;
    max-width: 400px;
  }
  .about .section-header img {
    width: 100px;
  }
  .about-card {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 351px) {
  .about .section-header img {
    top: 55px;
  }
}

.features {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 100px 0 100px 0;
}

.features .section-header {
  text-align: center;
  margin-bottom: 70px;
}

.features-dropdowns {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  animation: all 2s infinite linear;
}

.feature-dropdown {
  border-radius: 30px;
  background: var(--color-blue);
  transition: all 0.2s ease-in-out;
}

.dropdown-header {
  padding: 45px 70px;
  display: flex;
  align-items: center;
  color: var(--color-grey);
  font: var(--font-h3);
  text-transform: uppercase;
  justify-content: flex-end;
  cursor: pointer;
}

.dropdown-header-number {
  opacity: 0.6;
  margin-right: 45px;
}

.dropdown-header-title {
  margin-right: auto;
}

.dropdown-header .arrow {
  width: 24px;
  height: 24px;
  opacity: 0.6;
  transform: rotate(180deg);
  transition: all 0.2s ease-in-out;
  /* animation: rotation 2s infinite linear; */
}

.dropdown-content {
  position: relative;
  margin-left: 180px;
  margin-right: 180px;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.2s ease-in-out;
  /* animation: growDown 300ms ease-in-out forwards; */
  /* transform-origin: top center; */
  /* transition: all 0.2s ease-in-out; */
}

/* @keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  80% {
    transform: scaleY(1.1);
  }
  100% {
    transform: scaleY(1);
  }
} */

.dropdown-content-bulletpoint {
  display: flex;
}

.dropdown-content-bulletpoint img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.dropdown-content-bulletpoint p {
  margin-top: 1px;
  font: var(--font-text);
}

.section-closed .dropdown-header .arrow {
  transform: rotate(0);
}

.section-closed .dropdown-content {
  display: none;
}

@media screen and (max-width: 1024px) {
  .features {
    padding: 0;
    padding-top: 120px;
  }
  .features .section-header {
    margin-bottom: 50px;
  }
  .dropdown-header {
    padding: 45px 20px;
  }
  .dropdown-content {
    position: relative;
    margin-left: 75px;
    margin-right: 20px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 640px) {
  .dropdown-header {
    padding: 30px 20px;
    font-size: 16px;
  }
  .dropdown-header-number {
    margin-right: 10px;
  }
  .dropdown-content {
    margin-left: 15px;
    margin-right: 20px;
    margin-bottom: 35px;
  }
}

.pricing {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: fit-content;
  height: auto;
  padding-top: 100px;
  margin-bottom: 120px;
}

.pricing .section-header {
  text-align: center;
  padding: 34px 0 50px 0;
}

.pricing-cards {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  top: 0;
  transition: top 0.2s ease-in-out;
}

.pricing-card {
  border-radius: 20px;
  background: var(--color-blue);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-sizing: border-box;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
  border: 1.5px solid var(--color-red);
  background: linear-gradient(180deg, rgba(230, 57, 70, 0.09) 0%, var(--color-blue) 100%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--color-red);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
  white-space: nowrap;
  z-index: 2;
}

.pricing-name {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  height: 34px;
}

.pricing-name img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

.pricing-name h4 {
  text-transform: uppercase;
  font: var(--font-h4);
}

.pricing-coast {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 20px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.pricing-coast-title {
  display: flex;
  align-items: baseline;
  margin-bottom: 6px;
}

.pricing-coast-title h3 {
  font: var(--font-numeric);
  font-size: 40px;
  line-height: 1;
  margin-right: 6px;
}

.pricing-coast-title p {
  font: var(--font-c1);
  opacity: 0.8;
}

.pricing-coast-subtitle {
  font: var(--font-c2);
  opacity: 0.6;
}

.pricing-description {
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  gap: 14px;
  margin-bottom: auto;
  padding-bottom: 28px;
  flex-grow: 1;
}

.pricing-description-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 24px;
}
}

.pricing-description-feature img {
  height: 18px;
  width: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  opacity: 0.9;
}

.pricing-description-feature p {
  font: var(--font-text);
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

.pricing-description-feature p span {
  opacity: 0.6;
  font-size: 12px;
}

.subscribe-btn {
  width: 100%;
  padding: 16px;
  border-radius: 50px;
  border: 2px solid var(--color-red);
  background: var(--color-dark-blue);
  color: var(--color-grey);
  font: var(--font-btn);
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: auto;
}

.subscribe-btn.selected,
.subscribe-btn:hover {
  background: var(--color-red);
  color: #ffffff;
}

.subscribe-btn:active {
  opacity: 0.9;
}

/* Enterprise On-Premise Banner */
.pricing-enterprise {
  width: 100%;
  max-width: 1140px;
  margin: 28px auto 0 auto;
  background: var(--color-blue);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pricing-enterprise-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pricing-enterprise-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-enterprise-icon img {
  width: 24px;
  height: 24px;
}

.pricing-enterprise-text h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-enterprise-text p {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.4;
}

.pricing-enterprise-btn {
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.pricing-enterprise-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.rings {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  top: 50px;
}
.ring {
  position: absolute;
  border-radius: 100% 100% 0 0;
  border-top: 1px solid var(--color-violet);
  opacity: 0.5;
}
.ring-1 {
  height: 1800px;
  width: 1800px;
  bottom: -900px;
}
.ring-2 {
  height: 1400px;
  width: 1400px;
  bottom: -700px;
}
.ring-3 {
  height: 1000px;
  width: 1000px;
  bottom: -500px;
}

@media screen and (max-width: 1024px) {
  .pricing {
    height: auto;
    padding-top: 100px;
    margin-bottom: 100px;
  }
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 460px;
    gap: 36px;
  }
  .pricing-card.featured {
    order: -1;
  }
  .pricing-enterprise {
    flex-direction: column;
    text-align: center;
    max-width: 460px;
    padding: 24px 20px;
  }
  .pricing-enterprise-info {
    flex-direction: column;
  }
}

@media screen and (max-width: 640px) {
  .pricing .section-header {
    padding: 24px 0 40px 0;
  }
  
  .pricing-coast-title h3 { 
    font-size: 32px;
  }

  .pricing-coast-title p {
    font-size: 15px;
    padding-bottom: 4px;
  }

  .pricing-coast-subtitle {
    font-size: 12px;
  }
}

.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.footer hr {
  margin: 0;
  width: 100vw;
  align-self: center;
}

.footer-body {
  display: flex;
  justify-content: space-between;
  margin: 70px 0;
}

.footer-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.footer-info .subtitle {
  font: var(--font-btn);
  margin-bottom: auto;
}

.footer-info .title {
  font: var(--font-h1);
  margin-bottom: 70px;
}

.footer-info .title img {
  width: 45px;
  height: 40px;
  position: relative;
  top: -30px;
  left: -7px;
}

.footer-contacts {
  display: flex;
  font: var(--font-text);
}

.footer-contacts .email {
  margin-right: 83px;
}

.footer-contacts .adress {
  width: 267px;
}

.footer-contacts .label {
  font: var(--font-btn);
  opacity: 0.6;
  margin-bottom: 5px;
}

.footer-btn-wrapper {
  width: 500px;
  height: 500px;
  border-radius: 100%;
  background-color: #0e294e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-btn-wrapper .create-space {
}

.footer-privacy-policy {
  padding: 20px 0;
  font: var(--font-small-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.privacy-policy-with-date {

}

.privacy-policy-docs {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: end;
}

.privacy-policy-docs a {
  color: inherit;
  text-decoration: inherit;
}

.privacy-policy-docs a:visited {
  color: inherit;
  text-decoration: inherit;
}

.not-visited {
  top: 300px;
  opacity: 0;
}

@media screen and (max-width: 1400px) {
  .footer-btn-wrapper {
    width: 300px;
    height: 300px;
  }
}

@media screen and (max-width: 1024px) {
  .footer-body {
    position: relative;
    flex-direction: column-reverse;
  }
  .footer-info .subtitle {
    margin-bottom: 350px;
  }
  .footer-btn-wrapper {
    position: absolute;
    top: 65px;
  }
}

@media screen and (max-width: 640px) {
  .footer-body {
    margin-top: 20px;
  }
  .footer-info .subtitle {
    font-size: 12px;
  }
  .footer-info .title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .footer-info .title img {
    width: 30px;
    height: unset;
    top: -20px;
  }
  .footer-contacts {
    flex-direction: column;
    gap: 20px;
  }
  .footer-contacts .label {
    font-size: 12px;
    margin-bottom: 1px;
  }
  .footer-contacts .adress {
    width: unset;
  }

  .footer-btn-wrapper {
    width: 250px;
    height: 250px;
  }

  .footer-privacy-policy {
    font-size: 12px;
    padding: 10px 0;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 10px;
  }
  .privacy-policy-docs {
    align-items: start;
    gap: 10px;
  }
}